单据出库

This commit is contained in:
蔡玲
2024-11-15 17:42:20 +08:00
parent 688c0e372f
commit a1c5e2c016
16 changed files with 228 additions and 17 deletions

View File

@@ -135,4 +135,19 @@ export const schBaseTask = (page, size, sort, code) => request({
export const saveCheckTask = (code, status) => request({
url:'api/pda/check/saveCheckTask',
data: {task_code: code, status: status}
})
/**
* 单据出库
*/
export const outStorageOrder = () => request({
method: 'GET',
url:'api/pda/outStorage/order'
})
export const outStorageOrderList = (page, size, type) => request({
method: 'GET',
url:'api/pda/outStorage/orderList?page=' + page + '&size=' + size + '&form_type=' + type
})
export const outStorageConfirm = (obj) => request({
url:'api/pda/outStorage/confirm',
data: obj
})