feat(生产物料): 添加撤销出入库记录功能

新增撤销出入库记录API接口及前端操作按钮逻辑
处理入库和出库两种类型的撤销操作
This commit is contained in:
Tom
2026-01-15 18:12:19 +08:00
parent be85e20c95
commit 977d503805
2 changed files with 81 additions and 6 deletions

View File

@@ -137,4 +137,16 @@ export async function queryMmInventory(data) {
})
}
/**
* 撤销出/入库记录
*/
export async function cancelMmInventory(data) {
return request({
url: 'mes/productionMaterial/MmInventory/RevokeReceipt',
method: 'post',
data: data
})
}