add打印功能,修改表单出库

This commit is contained in:
2025-05-29 13:22:06 +08:00
parent 165154537b
commit 5cdacfa446
6 changed files with 140 additions and 9 deletions

View File

@@ -314,4 +314,26 @@ export const inStorageOrder = () => {
export const inStorageConfirm = () => {
let res = {code: '200'}
return res
}
export const queryPick = () => {
let res = {
'code': 'a00001',
'product_area': 'A2',
'stor_code': 'FStockId',
"point_code": "001",
"material_code": "100001",
"material_name": "垃圾了付定金",
"material_spec": "垃圾了付定金",
"prd_ppbom_no": "20202020",
"assign_qty": 6,
'qty': 35
}
return res
}
export const savePickTask = (data) => {
let res = {
code: '200',
msg: 'ok'
}
return res
}