分切暂存下料\分切暂存清除

This commit is contained in:
2024-06-28 09:01:05 +08:00
parent 650670f2dd
commit 9e70e03518
6 changed files with 181 additions and 14 deletions

View File

@@ -160,4 +160,19 @@ export const updatePackageInfo = (ivt, cn) => request({
export const operateIvt = (type, vcode, num, code) => request({
url:'api/bstIvtStockingivt/operateIvt',
data: {type: type, vehicle_code: vcode, row_num: num, material_code: code}
})
/**
* 分切暂存下料
*/
export const getCutCacheAgvPoints = () => request({
url:'api/pda/slitter/getCutCacheAgvPoints',
data: {}
})
export const sendSubVolumeToNBJ = (code) => request({
url:'api/pda/slitter/sendSubVolumeToNBJ',
data: {point_code: code}
})
export const toCleanCutCacheInventory = (code) => request({
url:'api/pda/slitter/toCleanCutCacheInventory',
data: {point_code: code}
})