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){ const isScaned = detail.subList.some(cur=>cur.scaned)
str += `物料号【${detail.itemCode}】数量【${detail.handleQty}】不允许小于任务数量【${detail.taskQty}\n` if(isScaned){
} if(detail.handleQty < detail.taskQty){
if(detail.handleQty > detail.taskQty){ str += `物料号【${detail.itemCode}】数量【${detail.handleQty}】不允许小于任务数量【${detail.taskQty}\n`
str1 += `物料号【${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 => { getManagementPrecisions([item.itemCode], item.fromLocationCode, ret => {
if (ret.success) { if (ret.success) {
this.managementList = ret.list; this.managementList = ret.list;
this.managementType = this.managementList.some(cur => cur.ManagementPrecision == 'BY_BATCH') ? this.managementType = this.managementList&&this.managementList[0]&&this.managementList[0].ManagementPrecision
'BY_BATCH' : '' if (this.managementType == 'BY_BATCH' || this.managementType == 'BY_QUANTITY') {
if (this.managementType == 'BY_BATCH') {
uni.navigateTo({ uni.navigateTo({
url: './deliverDetailBatch?id=' + item.masterId + '&status=' + item.status+'&title='+this.title url: './deliverDetailBatch?id=' + item.masterId + '&status=' + item.status+'&title='+this.title
}); });

Loading…
Cancel
Save