feat(wms): 添加类型不匹配钢卷管理功能并优化材料类型处理

1. 新增类型不匹配钢卷查询接口和页面
2. 优化材料类型变更处理逻辑,自动清空物品选择
3. 移除表单复制时冗余的材料类型同步调用
This commit is contained in:
砂糖
2026-04-08 14:29:16 +08:00
parent cd5bca19f6
commit 9c83c9d9a5
3 changed files with 491 additions and 9 deletions

View File

@@ -378,4 +378,15 @@ export function listWithBindInfoCoil(params) {
params,
timeout: 600000
})
}
/**
* 类型不匹配的卷
*/
export function listTypeErrorCoil() {
return request({
url: '/wms/materialCoil/queryMismatchedItemCoils',
method: 'get',
timeout: 600000
})
}