半成品盘点

This commit is contained in:
2023-07-03 14:11:31 +08:00
parent 8f43c079b9
commit 6e5fb6b057
14 changed files with 221 additions and 26 deletions

View File

@@ -34,6 +34,7 @@
<th>货位</th>
<th>物料编号</th>
<th>物料名称</th>
<th>物料规格</th>
<th>数量</th>
<th>单重(g)</th>
<th>载具号</th>
@@ -45,6 +46,7 @@
<td>{{e.struct_name}}</td>
<td>{{e.material_code}}</td>
<td>{{e.material_name}}</td>
<td>{{ e.material_spec }}</td>
<td>{{e.canuse_qty | numeric(3)}}</td>
<td>{{ e.unit_weight | numeric(3) }}</td>
<td>{{ e.storagevehicle_code }}</td>
@@ -113,6 +115,9 @@ export default {
this.pkObj = this.pkId === e.struct_name ? e : {}
},
toSure () {
if (!this.pkId) {
return
}
this.$store.dispatch('setMaterObj', JSON.stringify(this.pkObj))
this.colseUp()
},