内部平衡调拨候选问题

ywj_dev
anthonywj 2 years ago
parent aff910758f
commit a40f2d00fd

@ -216,7 +216,7 @@ export default {
scanPreIn: false,
vailInv: false,
entrutSpms: null,
codeFillCheck: false,
codeFillCheck: true,
defaultInv: null,
defaultSubInv: null,
orderVisibleType: null,
@ -464,7 +464,7 @@ export default {
scanPreIn: false,
vailInv: false,
entrutSpms: null,
codeFillCheck: false,
codeFillCheck: true,
defaultInv: null,
defaultSubInv: null,
orderVisibleType: null,

@ -1178,7 +1178,15 @@ export default {
curAction: this.inputQuery.supplementOrderType
}
candidateBusType(query).then((response) => {
this.orderTypeList = response.data || []
let data = response.data || []
if (data != null && data.length > 0) {
for (var i = 0; i < data.length; i++) {
if (data[i].action != this.inputQuery.action) {
this.orderTypeList.push(data[i]);
}
}
}
}).catch(() => {
})

Loading…
Cancel
Save