This commit is contained in:
qianhao.xu
2024-01-29 16:54:59 +08:00
parent 775f3cf690
commit 0acca51e0b
9 changed files with 534 additions and 121 deletions

View File

@@ -47,4 +47,13 @@ export function accumulator_query(query) {
method: 'get',
params: query,
})
}
// 计算当前工单下的抛光总数
export function calculate_polish_total_number(query) {
return request({
url: '/mes/qc/FQC/calculate_polish_total_number',
method: 'get',
params: query,
})
}

View File

@@ -47,4 +47,5 @@ export function accumulator_query(query) {
method: 'get',
params: query,
})
}
}

View File

@@ -47,4 +47,13 @@ export function accumulator_query(query) {
method: 'get',
params: query,
})
}
// 计算当前工单下的包装投入数==一次合格+抛光合格
export function calculate_packagingInvestment(query) {
return request({
url: '/mes/qc/FQC/calculate_packagingInvestment',
method: 'get',
params: query,
})
}