feat(生产物料): 添加查询出入库记录功能并优化操作列

- 在mminventory.js中添加queryMmInventory接口方法
- 移除MmRecordInbound和MmRecordOutbound中的操作列
- 在MmInventory中将操作按钮改为下拉菜单
- 实现查看进出库记录功能
This commit is contained in:
Tom
2026-01-13 15:00:41 +08:00
parent d6181587ed
commit 8db323d374
4 changed files with 64 additions and 26 deletions

View File

@@ -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
})
}