新增出入库顺序表

This commit is contained in:
2024-01-23 15:52:24 +08:00
parent 57186109fe
commit fe3771a4e0
6 changed files with 193 additions and 2 deletions

View File

@@ -101,3 +101,21 @@ export const getPoint = (sp) => request({
url:'api/pda/hrBcp/iosIn/getPoint',
data: {}
})
/**
* 出入库顺序表
*/
// 查询
export const hrBcpOrderList = (code, page, size) => request({
url:'api/pda/hrBcp/order/list',
data: {
bar_code: code,
page: page,
size: size
}
})
// 强制确认
export const hrBcpOrderDelete = (arr) => request({
url:'api/pda/hrBcp/order/delete',
data: arr
})