仓库-批量出库功能实现

This commit is contained in:
2024-04-23 18:43:37 +08:00
parent e16b448914
commit 93f32354aa
3 changed files with 289 additions and 3 deletions

View File

@@ -55,3 +55,15 @@ export function delWmGoodsOutProduction(pid) {
method: 'delete'
})
}
/**
* 批次出库
* @param data
*/
export function doPatchOutProduction(data) {
return request({
url: '/mes/wm/WmGoodsOutProduction/doPatchOutProduction',
method: 'post',
data: data,
})
}