feat(钢卷管理): 新增撤回发货功能并优化材质显示

在钢卷管理模块中新增撤回发货功能,允许用户撤回已发货的钢卷
同时优化外标签预览中材质的显示方式,增加厂家首字母信息
This commit is contained in:
砂糖
2026-01-11 19:04:25 +08:00
parent 9c180274af
commit f75794f3ff
3 changed files with 43 additions and 2 deletions

View File

@@ -183,4 +183,12 @@ export function listCoilWithIds(data) {
method: 'post',
data
})
}
// 撤回钢卷发货
export function cancelExportCoil(coilId) {
return request({
url: '/wms/materialCoil/withdrawExportCoil/' + coilId,
method: 'get'
})
}