feat(库位管理): 添加强制释放库位功能并更新版本至1.3.24

- 在actualWarehouse.js中添加forceReleaseLocation API
- 在easycode.vue中添加释放库位按钮及相关逻辑
- 更新应用版本号至1.3.24
- 完善钢卷详情显示逻辑,支持显示更多信息
This commit is contained in:
砂糖
2026-01-15 09:45:45 +08:00
parent 5bae1f405b
commit dd94606e86
6 changed files with 89 additions and 11 deletions

View File

@@ -52,3 +52,16 @@ export function treeActualWarehouseTwoLevel(query) {
})
}
/**
* 强制释放库位
*/
export function forceReleaseLocation(actualWarehouseId) {
if (!actualWarehouseId) {
throw new Error('actualWarehouseId is required');
}
return request({
url: '/wms/actualWarehouse/release/' + actualWarehouseId,
method: 'put',
})
}