fix(wms): 修正合卷操作状态查询参数并添加绑定钢卷列表功能

将actionStatus从0改为-1以正确查询不为2的记录
添加listBoundCoil接口用于查询已绑定发货的钢卷列表
在基础面板中显示单据状态标签并优化仓库查询逻辑
This commit is contained in:
砂糖
2026-03-05 11:15:34 +08:00
parent ffc42d110a
commit 15e59c10da
4 changed files with 33 additions and 12 deletions

View File

@@ -447,7 +447,7 @@ export default {
// 分别查询待处理和处理中的记录
const responses = await listPendingAction({
actionType: 200, // 合卷操作
actionStatus: 0, // 只要传递了actionStatus就会查询不为2的
actionStatus: '-1', // -1表示只查询不为2的记录
pageNum: 1,
pageSize: 1000
});