纸管绑定

This commit is contained in:
2025-05-28 17:45:53 +08:00
parent c2470f8c23
commit 9a4956ef5d
4 changed files with 41 additions and 16 deletions

View File

@@ -163,9 +163,9 @@ export const updatePackageInfo = (ivt, cn, code) => request({
/**
* 纸管绑定
*/
export const operateIvt = (type, vcode, num, qty, code, point) => request({
export const operateIvt = (type, vcode, rnum, cnum, qty, code, pcode) => request({
url:'api/bstIvtStockingivt/operateIvt',
data: {type: type, vehicle_code: vcode, row_num: num, qty: qty, material_code: code, point_code: point}
data: {type: type, vehicle_code: vcode, row_num: rnum, col_num: cnum, qty: qty, material_code: code, paper_code: pcode}
})
/**
* 分切暂存下料
@@ -235,13 +235,17 @@ export const bindSlitterSubVolumeInfo = (code, name) => request({
* 备货区管理
*/
export const doStockAreaBinding = (code, vcode) => request({
url:'api/pda/slitter/doStockAreaBinding',
url:'api/pda/stockingivt/doStockAreaBinding',
data: {point_code: code, vehicle_code: vcode}
})
export const doStockAreaUnbinding = (code) => request({
url:'api/pda/slitter/doStockAreaUnbinding',
url:'api/pda/stockingivt/doStockAreaUnbinding',
data: {point_code: code}
})
export const instorStock = (code, vcode, type) => request({
url:'api/pda/stockingivt/instorStock',
data: {point_code: code, vehicle_code: vcode, operate_type: type}
})
/**
* AGV放行
*/