feat(wms): 新增钢卷报表功能并添加导出接口

- 新增三个报表页面:发货报表、收货报表和ZHA报表
- 添加钢卷数据导出API接口
- 在钢卷拆分页面添加备注字段
- 清理base.vue中的多余空行
This commit is contained in:
砂糖
2026-01-09 19:06:21 +08:00
parent 8f89ff3b10
commit 90c81fbee0
6 changed files with 397 additions and 2 deletions

View File

@@ -163,4 +163,15 @@ export function listCoilOperation({coilIds, planId}) {
pageSize: 1000
}
})
}
// 钢卷导出
export function exportCoilData(coilIds) {
return request({
url: '/wms/materialCoil/export',
method: 'post',
data: {
coilIds
}
})
}