From bae1fe24d02490b065807e3a09645111ad1f04af Mon Sep 17 00:00:00 2001 From: DouDou <877258667@qq.com> Date: Wed, 6 Aug 2025 15:27:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E4=B8=8D=E4=BD=86=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/shipment/index.js | 3 + .../outWarehouse/com_print_pick_list.vue | 326 ++++++++++++++++++ .../outWarehouse/outWarehouseDetail.vue | 19 + .../modules/label/print_shipment_box_label.js | 4 +- .../label/print_shipment_packing_box_label.js | 2 +- 5 files changed, 351 insertions(+), 3 deletions(-) create mode 100644 src/views/modules/finshProduct/outWarehouse/com_print_pick_list.vue diff --git a/src/api/shipment/index.js b/src/api/shipment/index.js index 7368d81..2f21835 100644 --- a/src/api/shipment/index.js +++ b/src/api/shipment/index.js @@ -8,3 +8,6 @@ export const printShipment = (data)=>createAPI('/shipment/print','post',data) export const endShipment = (data) => createAPI( `/shipment/end`,'post',data) export const cancelShipment = (data) => createAPI( `/shipment/cancel`,'post',data) + +/* 获取装箱单打印的数据 */ +export const getPrintShipment = (data)=>createAPI('/shipment/getPrintShipment','post',data) diff --git a/src/views/modules/finshProduct/outWarehouse/com_print_pick_list.vue b/src/views/modules/finshProduct/outWarehouse/com_print_pick_list.vue new file mode 100644 index 0000000..b05098d --- /dev/null +++ b/src/views/modules/finshProduct/outWarehouse/com_print_pick_list.vue @@ -0,0 +1,326 @@ + + + + + + diff --git a/src/views/modules/finshProduct/outWarehouse/outWarehouseDetail.vue b/src/views/modules/finshProduct/outWarehouse/outWarehouseDetail.vue index d7a47bf..196efca 100644 --- a/src/views/modules/finshProduct/outWarehouse/outWarehouseDetail.vue +++ b/src/views/modules/finshProduct/outWarehouse/outWarehouseDetail.vue @@ -1,4 +1,5 @@