feat: implement dynamic inspection requirement logic based on material master data

This commit is contained in:
DXC
2026-03-17 11:56:04 +08:00
parent 368298a29d
commit c1c494893f
8 changed files with 273 additions and 14 deletions

View File

@ -60,4 +60,13 @@ export function batchSetWarning(data: any[]) {
method: 'post',
data
})
}
// 6. 批量设置强制质检
export function batchSetInspection(data: { ids: number[], isInspectionRequired: boolean }) {
return request({
url: '/inbound/base/batch-inspection',
method: 'post',
data
})
}