add单据入库

This commit is contained in:
2025-04-02 16:10:38 +08:00
parent 6f3dd892d7
commit 705dfc36f9
6 changed files with 320 additions and 8 deletions

View File

@@ -28,13 +28,6 @@ export const storList = () => request({
url:'api/pda/common/storList',
data: {}
})
// export const storList = () => {
// let res = {
// code: '200',
// content: [{value: 'FicStockId', label: '虚拟库编码'}, {value: 'FStockId', label: '料箱编码'}, {value: 'FStockPallet', label: '托盘库编码'}]
// }
// return res
// }
export const groupMaterList = (page, size, search) => request({
url:'api/groupMater/maters',
data: {page: page, size: size, search: search}
@@ -253,4 +246,11 @@ export const getPointStatus = (scode) => request({
export const bindOrUnbind = (scode, bcode, mode) => request({
url:'api/point/bindOrUnbind',
data: {site_code: scode, shelf_code: bcode, mode: mode}
})
/**
* 单据入库
*/
export const getBillNoInfo = (id) => request({
url:'api/pda/inStorage/getBillNoInfo/' + id,
method: 'GET'
})