添加型材发货

This commit is contained in:
2022-12-22 18:17:07 +08:00
parent ad710aa0a7
commit 785c89b5c6
5 changed files with 321 additions and 1 deletions

View File

@@ -520,3 +520,22 @@ export const deptList = () => post('api/pda/sb/deptList', {})
export const repairRequest = (id) => post('api/pda/sb/repairRequest', {
dept_id: id
})
/** 生产管理 -- 型材发货 */
// 1.1工令查询(分页查询)
export const xcoutqueryWorkorder = (page, size) => post('api/pda/st/out/xcout/queryWorkorder', {
page: page,
size: size
})
// 1.2扫载具查询桶明细
export const xcoutqueryStoragevehicle = (scode) => post('api/pda/st/out/xcout/queryStoragevehicle', {
storagevehicle_code: scode
})
// 1.3确认发货
export const xcoutconfirmoutstore = (wcode, vcode, dtl) => post('api/pda/st/out/xcout/confirmoutstore', {
mst: {
workorder_code: wcode,
vehicle_code: vcode
},
dtl: dtl
})