157 lines
3.2 KiB
TypeScript
Raw Normal View History

2025-03-10 13:48:17 +08:00
import request from '@/utils/request'
/**
*
* @param ChangeParams
*/
export function ModifyACTEvent(ChangeParams: any) {
return request({
url: '/api/CreateActByPo/ModifyActNumber',
method: 'post',
data: ChangeParams
})
}
/**
*
* @param ChangeParams
*/
export function ModifyPackingEvent(ChangeParams: any) {
return request({
url: '/api/CreateActByPo/ModifyPackingEvent',
method: 'post',
data: ChangeParams
})
}
/**
*
* @param ChangeParams
*/
export function NoChargeStockIn(ChangeParams: any) {
return request({
url: '/api/NoCharge/NoChargeStockIn',
method: 'post',
data: ChangeParams
})
}
/**
*
* @param ChangeParams
*/
export function getBarCode(ChangeParams: any) {
return request({
url: '/api/NoInvoice/getBarCode',
method: 'post',
data: ChangeParams
})
}
/**
*
* @param ChangeParams
*/
export function QTRCommit(ChangeParams: any) {
return request({
url: '/api/NoInvoice/QTRCommit',
method: 'post',
data: ChangeParams
})
}
export function CreateBox(ChangeParams: any) {
return request({
url: '/api/MaterialReceiveAct/TrackOutBox',
method: 'post',
data: ChangeParams,
});
}
export function DeleteTrackOutBox(ChangeParams: any) {
return request({
url: '/api/MaterialReceiveAct/DeleteTrackOutBox',
method: 'post',
data: ChangeParams,
});
}
export function DeleteTrackOutThisBox(ChangeParams: any) {
return request({
url: '/api/MaterialReceiveAct/DeleteTrackOutThisBox',
method: 'post',
data: ChangeParams,
});
}
export function PurInSendERPByCharge(ChangeParams: any) {
return request({
url: '/api/MaterialReceiveAct/commitToERP',
method: 'post',
data: ChangeParams,
});
}
export function CommitMove(ChangeParams: any) {
return request({
2025-03-14 16:35:25 +08:00
url: '/api/api/location/CommitMove2',
2025-03-10 13:48:17 +08:00
method: 'post',
data: ChangeParams,
});
}
export function FGStockIn(ChangeParams: any) {
return request({
url: '/api/FGStockIn/FGStockIn',
method: 'post',
data: ChangeParams,
});
}
export function addNChargeNOrder(params: any) {
return request({
url: '/api/stockIn/addNChargeNOrder',
method: 'post',
data: params,
});
}
export function checkNChargeNOrder(params: any) {
return request({
url: '/api/stockIn/checkNChargeNOrder',
method: 'post',
data: params,
});
}
export function changeLocation(params: any) {
return request({
2025-03-17 10:56:13 +08:00
url: '/api/api/NoInvoice/ChangeLocation',
2025-03-10 13:48:17 +08:00
method: 'post',
data: params,
});
}
export function SplitCharge(params: any) {
return request({
url: '/api/api/SplitCharge/SplitCharge',
2025-03-10 13:48:17 +08:00
method: 'post',
data: params,
});
}
export function TransferIn(params: any) {
return request({
url: '/api/TransferIn/CommitTransferInInvoice',
method: 'post',
data: params,
});
2025-03-18 13:41:40 +08:00
}
2025-03-26 09:06:16 +08:00
export function createDelivery(params: any) {
return request({
url: '/api/delivery/create',
method: 'post',
data: params,
});
}