feat(钢卷管理): 添加撤回发货功能并更新版本号至1.3.20

- 在钢卷管理页面新增撤回发货按钮及相关处理逻辑
- 添加撤回发货API接口cancelExportCoil
- 重构发货操作弹窗,支持发货和撤回发货两种操作
- 更新应用版本号至1.3.20,涉及config.js、manifest.json等文件
This commit is contained in:
砂糖
2026-01-11 19:05:44 +08:00
parent 3916546c50
commit 983bb0a172
6 changed files with 227 additions and 62 deletions

View File

@@ -75,3 +75,11 @@ export function exportCoil(coilId) {
method: 'get'
})
}
// 撤回钢卷发货
export function cancelExportCoil(coilId) {
return request({
url: '/wms/materialCoil/withdrawExportCoil/' + coilId,
method: 'get'
})
}