From e627e9f09ecf11f070f5985718807b3f306ddc18 Mon Sep 17 00:00:00 2001 From: mengjiao <3338049200@qq,com> Date: Mon, 20 Jan 2025 11:07:29 +0800 Subject: [PATCH] =?UTF-8?q?wms=E7=89=B9=E6=AE=8A=E5=87=BA=E5=BA=93?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/wms/outorderfc.js | 8 +++++++- src/views/wms/outorderTS/index.vue | 6 +++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/api/wms/outorderfc.js b/src/api/wms/outorderfc.js index 9e29db4..adf71e2 100644 --- a/src/api/wms/outorderfc.js +++ b/src/api/wms/outorderfc.js @@ -112,7 +112,13 @@ export function OutboundPostingzcSAP(data) { data: data }); } - +export function OutboundPostingzcSAPTS(data) { + return request({ + url: '/wms/order/OutboundPostingzcSAPTS', + method: 'post', + data: data + }); +} //退货接口 // 查询包材出库单列表 diff --git a/src/views/wms/outorderTS/index.vue b/src/views/wms/outorderTS/index.vue index de2940e..cfb6fda 100644 --- a/src/views/wms/outorderTS/index.vue +++ b/src/views/wms/outorderTS/index.vue @@ -41,6 +41,9 @@ + + 过账 + 导出 @@ -334,6 +337,7 @@ import { listReturnBC, OutboundPostingSAP, OutboundPostingzcSAP, + OutboundPostingzcSAPTS, listOutorderZC, listProduct, listckTS, @@ -939,7 +943,7 @@ export default { let postData = this.selectabletrows.map(item => ({ id: item.id })); //let postData = this.ids.map(id => ({ id: id })); console.log(postData) - OutboundPostingzcSAP(JSON.stringify(postData)).then(response => { + OutboundPostingzcSAPTS(JSON.stringify(postData)).then(response => { this.$modal.msgSuccess("操作完成"); }); },