feat(wms): 添加冷硬卷板切边统计和类别宽度统计功能

- 新增冷硬卷板切边统计页面和API接口
- 新增类别宽度统计页面和API接口
- 修改发货单页面,调整列显示
- 扩展统计预览功能,支持多种统计类型展示
This commit is contained in:
砂糖
2026-03-09 16:07:07 +08:00
parent 1038b17a66
commit fef2f132d0
6 changed files with 211 additions and 12 deletions

View File

@@ -328,3 +328,21 @@ export function returnCoil(coilId) {
}
})
}
/**
* 冷硬卷切边统计
*/
export function listCoilTrimStatistics() {
return request({
url: '/wms/materialCoil/statistics/trimStatistics',
method: 'get',
})
}
// 类别宽度统计,汇总统计
export function categoryWidthStatistics() {
return request({
url: '/wms/materialCoil/statistics/categoryWidthStatistics',
method: 'get',
})
}