This commit is contained in:
2026-01-26 14:38:46 +08:00
parent 210e0b62bb
commit 23a636c439
2 changed files with 23 additions and 10 deletions

View File

@@ -306,14 +306,14 @@ export const getTaskBucketGroupInfo = (vcode) => request({
data: {vehicle_code: vcode}
})
// 入站
export const manualInbound = (row, cpoint, vcode, total) => request({
export const manualInbound = (row, cpoint, vcode, total, weight) => request({
url:'api/pdaProduction/manualInbound',
data: {row: row, current_point: cpoint, vehicle_code: vcode, total: total}
data: {row: row, current_point: cpoint, vehicle_code: vcode, total: total, weight: weight}
})
// 出站
export const manualOutbound = (row, cpoint, vcode, total) => request({
export const manualOutbound = (row, cpoint, vcode, total, weight) => request({
url:'api/pdaProduction/manualOutbound',
data: {row: row, current_point: cpoint, vehicle_code: vcode, total: total}
data: {row: row, current_point: cpoint, vehicle_code: vcode, total: total, weight: weight}
})