入库检验

This commit is contained in:
qianhao.xu
2024-04-19 09:54:55 +08:00
parent b736e1a694
commit 5fa96ab554
2 changed files with 120 additions and 54 deletions

View File

@@ -82,3 +82,26 @@ export function delWmFgentryInspect(pid) {
method: 'delete'
})
}
/*
批量修改合格
*/
export function setTheBoxToBeQualified(data) {
return request({
url: '/mes/wm/WmFgentryInspect/batchQualified',
method: 'post',
data: data,
})
}
/*
批量修改不合格
*/
export function setTheBoxToBeUnQualified(data) {
return request({
url: '/mes/wm/WmFgentryInspect/batchUnQualified',
method: 'post',
data: data,
})
}