add库存出库

This commit is contained in:
蔡玲
2024-12-13 16:37:09 +08:00
parent f78fd6ba03
commit 2657cf2c5f
9 changed files with 350 additions and 9 deletions

View File

@@ -203,7 +203,19 @@ export const deviceManageTransf = (start) => request({
url:'api/deviceManage/transf',
data: {start: start}
})
export const transfConfirm = (start, end) => request({
export const transfConfirm = (start, end, code) => request({
url:'api/deviceManage/transfConfirm',
data: {start: start, end: end}
data: {start: start, end: end, vehicle_code: code}
})
/**
* 库存出库
*/
export const structattrPage = (page, size, code, mcode, has) => request({
url:'api/structattr?page=' + page + '&size=' + size + '&stor_code=' + code + '&material_code=' + mcode + '&has=' + has,
method: 'GET'
})
export const outStorageMaterConfirm = (obj) => request({
url:'api/pda/outStorage/materConfirm',
data: obj
})