fix:优化需求单下推逻辑,允许局部成功
This commit is contained in:
@@ -64,7 +64,7 @@
|
||||
</el-table-column>
|
||||
<el-table-column prop="requestId" label="出入库单号" min-width="140" />
|
||||
<el-table-column prop="sn" label="序列码" min-width="140" />
|
||||
<el-table-column prop="status" label="回传状态" width="100" >
|
||||
<el-table-column prop="status" label="回传状态" width="100">
|
||||
<template slot-scope="scope">
|
||||
<el-tag :type="statusTagType(scope.row.status)" size="mini">{{ statusLabel(scope.row.status) }}</el-tag>
|
||||
</template>
|
||||
@@ -130,8 +130,8 @@
|
||||
</el-table-column>
|
||||
<el-table-column prop="materialno" label="物料编号" min-width="120" />
|
||||
<el-table-column prop="unitno" label="单位编号" min-width="100" />
|
||||
<el-table-column prop="qty" label="数量" min-width="100" />
|
||||
<el-table-column prop="baseqty" label="基础数量" min-width="100" />
|
||||
<el-table-column prop="qty" label="工单扣减数量" min-width="100" />
|
||||
<el-table-column prop="baseqty" label="bom数量" min-width="100" />
|
||||
<el-table-column prop="warehouseno" label="仓库编号" min-width="120" />
|
||||
<el-table-column prop="easQty" label="eas库存" min-width="120" />
|
||||
<el-table-column prop="updateTime" label="更新时间" min-width="120" />
|
||||
@@ -242,7 +242,7 @@ export default {
|
||||
},
|
||||
handleSelectionChange(val, row) {
|
||||
if (val.length == 1) {
|
||||
if (val[0].status === '0' || val[0].status === '2' ){
|
||||
if (val[0].status === '0' || val[0].status === '2') {
|
||||
this.uploadFlag = false
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user