wms:库位批量查看

This commit is contained in:
qianhao.xu
2024-04-07 19:05:18 +08:00
parent ae1556b4ff
commit c0ce07b146
17 changed files with 1898 additions and 232 deletions

View File

@@ -0,0 +1,27 @@
import request from '@/utils/request'
/**
* 短批次号
* @param {查询条件} data
*/
export function GetGoodsNowProduction_List(query) {
return request({
url: '/mes/wm/WmGoodsNowProduction/shortPatchsearch',
method: 'get',
params: query,
})
}
/**
* 查询详细信息
* @param {查询条件} data
*/
export function GetGoodsNowProduction_detail(query) {
return request({
url: '/mes/wm/WmGoodsNowProduction/patchsearchdetail',
method: 'get',
params: query,
})
}