feat(wms): 新增导出功能并优化发货单显示

- 在base.vue中新增导出按钮和按库区排序选项
- 添加exportCoilWithAll API接口用于批量导出
- 在waybill.vue中新增showNewExport属性控制导出按钮显示
- 优化发货单页面显示,增加订单编号和备注显示
- 新增delivery/canuse页面用于展示可用钢卷
- 修复发货单修改时订单编号显示问题
This commit is contained in:
砂糖
2026-03-10 13:33:30 +08:00
parent 8927760eb1
commit 730148e966
6 changed files with 113 additions and 14 deletions

View File

@@ -345,4 +345,15 @@ export function categoryWidthStatistics() {
url: '/wms/materialCoil/statistics/categoryWidthStatistics',
method: 'get',
})
}
/**
* 钢卷被退货,发给客户的钢卷被退货
*/
export function exportCoilWithAll(data) {
return request({
url: '/wms/materialCoil/exportAll',
method: 'post',
data
})
}