修复成本问题

This commit is contained in:
2026-01-27 16:54:46 +08:00
parent bfe8750b86
commit a1f8b0c60b
9 changed files with 268 additions and 205 deletions

View File

@@ -89,13 +89,13 @@ export function batchCalculateCost(calcDate) {
})
}
// 按入场钢卷号维度计算成本
export function calculateCostByEnterCoilNo(enterCoilNo, calcDate) {
// 按当前钢卷号维度计算成本(单卷详情)
export function calculateCostByCurrentCoilNo(currentCoilNo, calcDate) {
return request({
url: '/wms/cost/coil/calculateByEnterCoilNo',
url: '/wms/cost/coil/calculateByCurrentCoilNo',
method: 'post',
params: {
enterCoilNo,
currentCoilNo,
calcDate
}
})