diff --git a/src/views/modules/haianAutoWarehouse/haianPalletAssembly.vue b/src/views/modules/haianAutoWarehouse/haianPalletAssembly.vue index d98cc5e..7c46911 100644 --- a/src/views/modules/haianAutoWarehouse/haianPalletAssembly.vue +++ b/src/views/modules/haianAutoWarehouse/haianPalletAssembly.vue @@ -508,9 +508,11 @@ export default { return } this.palletScanLoading = true + // 手工组盘/直接组盘场景 sortFlag=0:与组盘入库同一套拦截,分拣盘不能在本页操作 - rqrq checkPalletExists({ site: this.site, - palletId: this.palletCode.trim() + palletId: this.palletCode.trim(), + sortFlag: 0 }).then(({ data }) => { if (data && data.code === 0) { this.palletCode = data.palletId @@ -857,7 +859,8 @@ export default { deletePalletDetail({ site: this.site, palletId: this.palletCode, - serialNo: this.scanCode + serialNo: this.scanCode, + sortFlag: 0 }).then(({ data }) => { if (data && data.code === 0) { if (scanOutItem) { diff --git a/src/views/modules/haianAutoWarehouse/haianPalletPacking.vue b/src/views/modules/haianAutoWarehouse/haianPalletPacking.vue index 059d5de..4b2ccda 100644 --- a/src/views/modules/haianAutoWarehouse/haianPalletPacking.vue +++ b/src/views/modules/haianAutoWarehouse/haianPalletPacking.vue @@ -548,9 +548,11 @@ export default { return } this.palletScanLoading = true + // 组盘入库场景 sortFlag=0:后端拦截手工分拣区/被分拣站栈板,并按区域 pack_able 处理后续扫标签 - rqrq checkPalletExists({ site: this.site, - palletId: this.palletCode.trim() + palletId: this.palletCode.trim(), + sortFlag: 0 }).then(({ data }) => { if (data && data.code === 0) { this.palletCode = data.palletId @@ -910,7 +912,8 @@ export default { deletePalletDetail({ site: this.site, palletId: this.palletCode, - serialNo: this.scanCode + serialNo: this.scanCode, + sortFlag: 0 }).then(({ data }) => { if (data && data.code === 0) { if (scanOutItem) { diff --git a/src/views/modules/haianAutoWarehouse/haianPalletSorting.vue b/src/views/modules/haianAutoWarehouse/haianPalletSorting.vue index 932081e..f5e6f9b 100644 --- a/src/views/modules/haianAutoWarehouse/haianPalletSorting.vue +++ b/src/views/modules/haianAutoWarehouse/haianPalletSorting.vue @@ -101,7 +101,7 @@ 刷新 - +