From 1a498b49e70bbc91f2c49e81a25179b6e2ed6e6d Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Tue, 4 Nov 2025 16:51:24 +0800 Subject: [PATCH] =?UTF-8?q?2025-11-04=20=E9=94=80=E5=94=AE=E5=8F=91?= =?UTF-8?q?=E8=B4=A7=E8=A3=85=E7=AE=B1=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../boxManage/com_saleBoxManage_boxing.vue | 20 ++++++++++++++++- .../boxManage/com_saleBoxManage_pallet.vue | 22 +++++++++++++++++-- src/views/modules/boxManage/saleBoxManage.vue | 6 ++++- 3 files changed, 44 insertions(+), 4 deletions(-) diff --git a/src/views/modules/boxManage/com_saleBoxManage_boxing.vue b/src/views/modules/boxManage/com_saleBoxManage_boxing.vue index 21ef2ad..674ccb1 100644 --- a/src/views/modules/boxManage/com_saleBoxManage_boxing.vue +++ b/src/views/modules/boxManage/com_saleBoxManage_boxing.vue @@ -213,7 +213,25 @@ export default { columnProp: "rollsQty", headerAlign: "center", align: "right", - columnLabel: "卷数", + columnLabel: "装箱张数", + columnWidth: '80', + columnHidden: false, + columnImage: false, + columnSortable: false, + sortLv: 0, + status: true, + fixed: false + }, + { + userId: this.$store.state.user.name, + functionId: this.functionId, + serialNumber: '750001Table2RollsQty', + tableId: "750001Table2", + tableName: "装箱清单", + columnProp: "xxx", + headerAlign: "center", + align: "right", + columnLabel: "装箱总数", columnWidth: '80', columnHidden: false, columnImage: false, diff --git a/src/views/modules/boxManage/com_saleBoxManage_pallet.vue b/src/views/modules/boxManage/com_saleBoxManage_pallet.vue index 25320c4..2316fd5 100644 --- a/src/views/modules/boxManage/com_saleBoxManage_pallet.vue +++ b/src/views/modules/boxManage/com_saleBoxManage_pallet.vue @@ -45,7 +45,7 @@ - + @@ -196,7 +196,25 @@ export default { columnProp: "boxesQty", headerAlign: "center", align: "right", - columnLabel: "箱数", + columnLabel: "装托张数", + columnWidth: '80', + columnHidden: false, + columnImage: false, + columnSortable: false, + sortLv: 0, + status: true, + fixed: false + }, + { + userId: this.$store.state.user.name, + functionId: this.functionId, + serialNumber: '750002Table2BoxesQty', + tableId: "750002Table2", + tableName: "托清单", + columnProp: "xxx", + headerAlign: "center", + align: "right", + columnLabel: "装托总数", columnWidth: '80', columnHidden: false, columnImage: false, diff --git a/src/views/modules/boxManage/saleBoxManage.vue b/src/views/modules/boxManage/saleBoxManage.vue index 49b85bd..6850730 100644 --- a/src/views/modules/boxManage/saleBoxManage.vue +++ b/src/views/modules/boxManage/saleBoxManage.vue @@ -246,6 +246,10 @@ + + 需求数量: + {{currentRow.requiredQty || 0}} + 盒数量: {{caseStatistics.casesCount}} @@ -1065,7 +1069,7 @@ export default { const totalQty = existingQty + newScanQty if(totalQty > requiredQty){ - this.$message.error(`装箱数量超出限制!要求发货数量:${requiredQty},已装箱:${existingQty},本次扫描:${newScanQty},总计:${totalQty}`) + this.$message.error(`装箱数量超出限制!要求发货数量:${requiredQty},本次扫描:${newScanQty},总计:${totalQty}`) return false }