feat(钢卷发货): 新增钢卷发货功能并优化相关界面

- 新增钢卷发货API接口及前端调用
- 将发货操作从状态更新改为专用发货接口
- 移除状态选择列并添加发货按钮
- 更新后端控制器注释和方法类型
This commit is contained in:
砂糖
2025-12-02 14:45:06 +08:00
parent ee97dee4ab
commit 86e047bd5e
4 changed files with 35 additions and 20 deletions

View File

@@ -127,4 +127,12 @@ export function exportAllMaterialCoil(query) {
method: 'post',
data: query
})
}
// 钢卷发货
export function exportCoil(coilId) {
return request({
url: '/wms/materialCoil/exportCoil/' + coilId,
method: 'get'
})
}