feat(生产物料): 添加查询出入库记录功能并优化操作列
- 在mminventory.js中添加queryMmInventory接口方法 - 移除MmRecordInbound和MmRecordOutbound中的操作列 - 在MmInventory中将操作按钮改为下拉菜单 - 实现查看进出库记录功能
This commit is contained in:
@@ -125,3 +125,16 @@ export async function exportMmInventory(query) {
|
||||
// })
|
||||
await downFile('/mes/productionMaterial/MmInventory/export', { ...query })
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询出/入库记录
|
||||
*/
|
||||
export async function queryMmInventory(data) {
|
||||
return request({
|
||||
url: 'mes/productionMaterial/MmInventory/GetInOrOutRecord',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user