仓库-出库单:出库计划,样式功能调整,打印功能添加

This commit is contained in:
赵正易
2024-03-22 08:36:13 +08:00
parent 1ecac2d4f2
commit cf904b1ffa
4 changed files with 184 additions and 65 deletions

View File

@@ -74,4 +74,26 @@ export function getMaterialList(params) {
method: 'get',
params
})
}
}
/**
* 根据出货单号,查询出货单物料信息
*/
export function getOutoderMatrials(params) {
return request({
url: '/mes/wm/WmOutOrder/getoutorder_matrials',
method: 'get',
params
})
}
/**
* 根据出货单号 4 生成出货单的出货计划
*/
export function generateOutorderplan(params) {
return request({
url: '/mes/wm/WmOutOrder/generate_outorderplan',
method: 'get',
params
})
}