发货确认add

This commit is contained in:
2022-10-28 10:57:45 +08:00
parent 2b286c9e6e
commit 29d9888a30
5 changed files with 254 additions and 38 deletions

View File

@@ -91,4 +91,31 @@ export const pointStatusQuery = (pcode, cname) => request({
data: {
point_code: pcode
}
})
})
// 【仓储管理】
// 出库确认-生产区发货确认、虚拟区发货确认
// 1.1出库初始化查询
export const ivtQuery = (bno, pcode, option) => request({
url: 'api/pda/st/ivtQuery',
data: {
box_no: bno,
point_code: pcode,
option: option
}
})
// 1.1出库确认
export const stoutConfirm = (bjo, option) => request({
url: 'api/pda/st/outConfirm',
data: {
box_jo: bjo,
option: option
}
})
// 1.1出库确认
export const stoutPrint = (bjo) => request({
url: 'api/pda/st/outPrint',
data: {
box_jo: bjo
}
})