From 703a355c71bf5118b7b71429196b52f7f8bded9a Mon Sep 17 00:00:00 2001 From: "han\\hanst" Date: Fri, 17 Oct 2025 15:49:00 +0800 Subject: [PATCH] =?UTF-8?q?IFS=E5=BA=93=E5=AD=98=E5=88=9D=E5=A7=8B?= =?UTF-8?q?=E5=8C=96=E5=AF=BC=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/warehouse/ifsInventoryInit.js | 5 +- .../modules/warehouse/ifsInventoryInit.vue | 91 ++++- .../warehouse/ifsInventory_upload_excel.vue | 313 ++++++++++++++++++ 3 files changed, 407 insertions(+), 2 deletions(-) create mode 100644 src/views/modules/warehouse/ifsInventory_upload_excel.vue diff --git a/src/api/warehouse/ifsInventoryInit.js b/src/api/warehouse/ifsInventoryInit.js index c90f884..ee67b05 100644 --- a/src/api/warehouse/ifsInventoryInit.js +++ b/src/api/warehouse/ifsInventoryInit.js @@ -13,4 +13,7 @@ export const batchCreateHandlingUnits = data => createAPI(`ifsInventoryInit/batc export const printLabel = data => createAPI('/label/setting/printLabel','post',data) // 修改已打印数量 -export const updatePrintQty = data => createAPI(`ifsInventoryInit/updatePrintQty`, 'POST', data) \ No newline at end of file +export const updatePrintQty = data => createAPI(`ifsInventoryInit/updatePrintQty`, 'POST', data) + +// 导入IFS库存Excel +export const uploadIfsInventoryExcel = data => createAPI(`ifsInventoryInit/uploadIfsInventoryExcel`, 'POST', data) \ No newline at end of file diff --git a/src/views/modules/warehouse/ifsInventoryInit.vue b/src/views/modules/warehouse/ifsInventoryInit.vue index 28f817e..0d0b466 100644 --- a/src/views/modules/warehouse/ifsInventoryInit.vue +++ b/src/views/modules/warehouse/ifsInventoryInit.vue @@ -1,5 +1,5 @@