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

@@ -309,7 +309,7 @@ export default {
if (!value) {
this.queryParams.actionStatus = null;
} else {
this.queryParams.actionStatus = 0;
this.queryParams.actionStatus = '-1';
}
this.getList()
},