25 lines
487 B
JavaScript
25 lines
487 B
JavaScript
import request from "@/utils/request";
|
|
|
|
/**
|
|
* 库存表分页查询
|
|
* @param {查询条件} data
|
|
*/
|
|
export function listMmInventory(query) {
|
|
return request({
|
|
url: "/mes/productionMaterial/MmInventory/list",
|
|
method: "get",
|
|
params: query,
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 获取物料编码列表
|
|
*/
|
|
export function getMaterialOption(query) {
|
|
return request({
|
|
url: 'mes/productionMaterial/MmInventory/GetMaterialOption/',
|
|
method: 'post',
|
|
data: query
|
|
})
|
|
}
|