半成品

This commit is contained in:
2023-04-13 18:45:33 +08:00
parent 70aa43be47
commit 742e6449c0
2 changed files with 17 additions and 5 deletions

View File

@@ -180,3 +180,15 @@ export const releasepoint = (point, code, option) => request({
option: option
}
})
/** 半成品入库 */
export const semiProductInFromPda = (id, mid, qty, code) => request({
url:'api/in/semiProductIn/semiProductInFromPda',
data: {
iostorinv_id: id,
material_id: mid,
plan_qty: qty,
storagevehicle_code: code
}
})