虚拟出库

This commit is contained in:
2026-04-01 19:00:34 +08:00
parent fb7a851a01
commit dc16ec0198
4 changed files with 201 additions and 126 deletions

View File

@@ -279,6 +279,18 @@ export const hyConfirmIn = (rows) => request({
data: {rows: rows}
})
// 虚拟出库(仓储管理)共 (2) 个
// 查询库存信息
export const hyQueryIvt = (mcode, pcsn) => request({
url:'api/pdaWarehouse/hyQueryIvt',
data: {material_code: mcode, pcsn: pcsn}
})
// 确认出库
export const hyConfirmOut = (rows) => request({
url:'api/pdaWarehouse/hyConfirmOut',
data: {rows: rows}
})
/**
* 生产管理
*/