From ab7dfd9065b70e5ed35f9c84a242ed0c4402d830 Mon Sep 17 00:00:00 2001 From: "han\\hanst" Date: Wed, 4 Jun 2025 09:12:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E8=B4=A7=E9=80=9A=E7=9F=A5=E5=8D=95?= =?UTF-8?q?=E5=AF=BC=E5=85=A5=E6=97=B6,=E6=96=B0=E5=A2=9E=E5=AE=A2?= =?UTF-8?q?=E6=88=B7=E7=BB=B4=E6=8A=A4=E9=A1=B9=E7=AD=89=20=E6=94=AF?= =?UTF-8?q?=E6=8C=81=E5=AF=BC=E5=85=A5=E6=94=B9=E5=8D=95=E7=AD=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/ecss/ecss.js | 10 + src/utils/export-options.js | 10 +- src/views/modules/ecss/codelnotify.vue | 432 +++++++++++++++++- src/views/modules/ecss/codelnotifyConfirm.vue | 7 + src/views/modules/ecss/createDeclaration.vue | 40 +- src/views/modules/ecss/declaration.vue | 4 +- .../modules/ecss/del_detail_upload_excel.vue | 165 +++++++ src/views/modules/ecss/del_upload_excel.vue | 280 +++++++++++- .../modules/ecss/pallet_upload_excel.vue | 4 + 9 files changed, 904 insertions(+), 48 deletions(-) create mode 100644 src/views/modules/ecss/del_detail_upload_excel.vue diff --git a/src/api/ecss/ecss.js b/src/api/ecss/ecss.js index b18c96b..8fd0811 100644 --- a/src/api/ecss/ecss.js +++ b/src/api/ecss/ecss.js @@ -3,6 +3,8 @@ import { createAPI } from "@/utils/httpRequest.js"; export const saveEcssCoDelNotifyByExcel = data => createAPI(`/ecss/coDel/saveEcssCoDelNotifyByExcel`,'post',data) + +export const modifyNotifyDetailByExcel = data => createAPI(`/ecss/coDel/modifyNotifyDetailByExcel`,'post',data) export const searchEcssCoDelNotifyHeader = data => createAPI(`/ecss/coDel/searchEcssCoDelNotifyHeader`,'post',data) export const searchEcssCoDelNotifyDetail = data => createAPI(`/ecss/coDel/searchEcssCoDelNotifyDetail`,'post',data) @@ -109,3 +111,11 @@ export const queryPartListAll = data => createAPI(`/ecss/coDel/queryPartListAll` export const searchCustomList = (data) => createAPI(`/select/ecssMapper/getCustomerList/list`,'post',data) +export const getCustomerList = data => createAPI(`/select/ecssMapper/getCustomerList/list`,'post',data) + +export const getCustomers = data => createAPI(`/select/ecssMapper/getCustomerInfo/list`,'post',data) + +export const getCustomerAdd = data => createAPI(`/select/ecssMapper/getCustomerAdd/list`,'post',data) + + + diff --git a/src/utils/export-options.js b/src/utils/export-options.js index 1570fe8..7e28d58 100644 --- a/src/utils/export-options.js +++ b/src/utils/export-options.js @@ -59,7 +59,15 @@ const PalletSku = { { columnProp: "netWeight", columnLabel: "净重", - } + }, + { + columnProp: "shippingMode", + columnLabel: "运输方式", + }, + { + columnProp: "destination", + columnLabel: "客户目的地", + }, ], mergeSetting: { mergeSetting: { diff --git a/src/views/modules/ecss/codelnotify.vue b/src/views/modules/ecss/codelnotify.vue index f8045e7..86e0f74 100644 --- a/src/views/modules/ecss/codelnotify.vue +++ b/src/views/modules/ecss/codelnotify.vue @@ -71,6 +71,12 @@ {{ '导出' }} + + {{'导出发票'}} + + + {{'导出出口货物委托书'}} + {{'新增'}} + {{'导入'}} + + @@ -461,12 +470,203 @@ 关闭 + + + + + + + + + + + + + 品名 + + + + + 中文 + 英文 + + + + + 合同 + + + + + 货物明细 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 确定 + 关闭 + + + + + + + + 中文 + 英文 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 确定 + 关闭 + + + + + + + + + 查询 + + + + + + + + + + 关闭 + + diff --git a/src/views/modules/ecss/del_upload_excel.vue b/src/views/modules/ecss/del_upload_excel.vue index 0d5ffb2..f38859f 100644 --- a/src/views/modules/ecss/del_upload_excel.vue +++ b/src/views/modules/ecss/del_upload_excel.vue @@ -1,23 +1,65 @@