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

@@ -50,4 +50,13 @@ export function batchAddDeliveryWaybillDetail(data) {
method: 'post',
data: data
})
}
// 查询已绑定发货的钢卷列表
export function listBoundCoil(query) {
return request({
url: '/wms/deliveryWaybillDetail/boundCoilList',
method: 'get',
params: query
})
}