Browse Source

成品发货提示

intex_online20241205
张立 4 months ago
parent
commit
ab7f9e10b4
  1. 13
      src/pages/deliver/job/deliverDetailBatch.vue
  2. 5
      src/pages/deliver/job/deliverJob.vue

13
src/pages/deliver/job/deliverDetailBatch.vue

@ -551,11 +551,14 @@
}
}
})
if(detail.handleQty < detail.taskQty){
str += `物料号【${detail.itemCode}】数量【${detail.handleQty}】不允许小于任务数量【${detail.taskQty}\n`
}
if(detail.handleQty > detail.taskQty){
str1 += `物料号【${detail.itemCode}】数量【${detail.handleQty}】不允许大于任务数量【${detail.taskQty}\n`
const isScaned = detail.subList.some(cur=>cur.scaned)
if(isScaned){
if(detail.handleQty < detail.taskQty){
str += `物料号【${detail.itemCode}】数量【${detail.handleQty}】不允许小于任务数量【${detail.taskQty}\n`
}
if(detail.handleQty > detail.taskQty){
str1 += `物料号【${detail.itemCode}】数量【${detail.handleQty}】不允许大于任务数量【${detail.taskQty}\n`
}
}
})

5
src/pages/deliver/job/deliverJob.vue

@ -199,9 +199,8 @@
getManagementPrecisions([item.itemCode], item.fromLocationCode, ret => {
if (ret.success) {
this.managementList = ret.list;
this.managementType = this.managementList.some(cur => cur.ManagementPrecision == 'BY_BATCH') ?
'BY_BATCH' : ''
if (this.managementType == 'BY_BATCH') {
this.managementType = this.managementList&&this.managementList[0]&&this.managementList[0].ManagementPrecision
if (this.managementType == 'BY_BATCH' || this.managementType == 'BY_QUANTITY') {
uni.navigateTo({
url: './deliverDetailBatch?id=' + item.masterId + '&status=' + item.status+'&title='+this.title
});

Loading…
Cancel
Save