fix: 分拣工单物料信息问题、组盘信息冗余问题、
This commit is contained in:
@@ -28,12 +28,17 @@
|
||||
<el-radio v-model="tableRadio" :label="scope.row"><i /></el-radio>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="FORDER_NO" label="订单号" width="160" />
|
||||
<el-table-column prop="FORDER_SUBNUM" label="总数量" width="160" />
|
||||
<el-table-column prop="GUADANSUM" label="包装数量" width="160" />
|
||||
<el-table-column prop="FMATERIAL_NAME" label="物料名称" width="180" show-overflow-tooltip />
|
||||
<el-table-column prop="FMATSPEC" label="物料规格" width="140" />
|
||||
<el-table-column prop="FMATMODEL" label="物料型号" width="130px" />
|
||||
<el-table-column prop="forder_NO" label="订单号" width="160" />
|
||||
<el-table-column prop="forder_SUBNUM" label="订单数量" width="160" />
|
||||
<el-table-column prop="guadansum" label="订单已挂单数量" width="160" />
|
||||
<el-table-column label="所需数量" width="160" >
|
||||
<template slot-scope="scope">
|
||||
{{scope.row.forder_SUBNUM - scope.row.guadansum}}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="fmaterial_NAME" label="物料名称" width="180" show-overflow-tooltip />
|
||||
<el-table-column prop="bc" label="NCC计划类型" width="140" />
|
||||
<el-table-column prop="bz" label="交货期" width="140" />
|
||||
</el-table>
|
||||
<!--分页组件-->
|
||||
<pagination />
|
||||
|
||||
@@ -614,9 +614,9 @@ export default {
|
||||
},
|
||||
recordMesOrder(row) { // 操作mes工单
|
||||
this.clearRecordMesOrder()
|
||||
this.form.order_no = row.FORDER_NO
|
||||
this.form.order_subnum = row.FORDER_SUBNUM
|
||||
this.form.guadansum = row.GUADANSUM
|
||||
this.form.order_no = row.forder_NO
|
||||
this.form.order_subnum = row.forder_SUBNUM
|
||||
this.form.guadansum = row.guadansum
|
||||
},
|
||||
setRegionName(data) {
|
||||
// 清空
|
||||
|
||||
Reference in New Issue
Block a user