From 45cb42ca2ebf50a1d924937cffe44a0cbffe8200 Mon Sep 17 00:00:00 2001 From: 18110972313 <780768673@qq.com> Date: Thu, 15 May 2025 20:11:14 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E5=88=B0=E8=B4=A7=E5=8D=95=E5=85=A5?= =?UTF-8?q?=E5=BA=93=E8=BF=87=E8=B4=A6=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/StockIn/index.ts | 15 +++++++++++++++ src/api/delivery/index.ts | 8 ++++++++ 2 files changed, 23 insertions(+) diff --git a/src/api/StockIn/index.ts b/src/api/StockIn/index.ts index 5de5fd4..bac3c6b 100644 --- a/src/api/StockIn/index.ts +++ b/src/api/StockIn/index.ts @@ -147,3 +147,18 @@ export function TransferIn(params: any) { data: params, }); } + +/** + * 到货单入库过账 + * @param ChangeParams + * @constructor + */ +export function DeliveryStockInSendSAP(ChangeParams: any) { + return request({ + url: '/api/MaterialReceiveAct/commitDeliveryStockInToSAP', + method: 'post', + data: ChangeParams, + }); + + +} diff --git a/src/api/delivery/index.ts b/src/api/delivery/index.ts index 0c34ef1..80cac47 100644 --- a/src/api/delivery/index.ts +++ b/src/api/delivery/index.ts @@ -46,4 +46,12 @@ export function delDelivery(params: any) { method: 'post', data: params, }); +} + +export function getMaterialDeliveryDetailList(params: any) { + return request({ + url: '/api/api/delivery/getMaterialDeliveryDetailList', + method: 'post', + data: params, + }); } \ No newline at end of file