update 到货单入库过账方法

This commit is contained in:
18110972313 2025-05-15 20:11:14 +08:00
parent 34f9c36133
commit 45cb42ca2e
2 changed files with 23 additions and 0 deletions

View File

@ -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,
});
}

View File

@ -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,
});
}