From d197b75e591ebdeb1c497cc8a927a5a9cb806282 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Thu, 29 Jan 2026 17:16:43 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=8A=A5=E8=A1=A8):=20=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E5=8F=91=E8=B4=A7=E6=8A=A5=E8=A1=A8=E5=88=97=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E5=B9=B6=E6=96=B0=E5=A2=9E=E5=AF=BC=E5=87=BA=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在发货报表视图中注释掉不使用的列,并新增发货车牌号、目标客户和负责人列 为导出功能添加includeBindInfo参数和修改导出接口路径 --- klp-ui/src/views/wms/report/delivery.vue | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/klp-ui/src/views/wms/report/delivery.vue b/klp-ui/src/views/wms/report/delivery.vue index 2244ca83..d2f122fe 100644 --- a/klp-ui/src/views/wms/report/delivery.vue +++ b/klp-ui/src/views/wms/report/delivery.vue @@ -65,8 +65,8 @@ - - + + @@ -148,6 +150,7 @@ export default { itemSpecification: '', itemMaterial: '', itemManufacturer: '', + includeBindInfo: true, }, loading: false, } @@ -177,8 +180,9 @@ export default { }, // 导出 exportData() { - this.download('wms/materialCoil/export', { + this.download('wms/materialCoil/exportDelivery', { coilIds: this.list.map(item => item.coilId).join(','), + // 传了status为1则会使用发货时间作为筛选条件查询,且导出后的excel会包含发货时间和发货人 status: 1 }, `materialCoil_${new Date().getTime()}.xlsx`) },