Merge branch '0.8.X' of https://gitee.com/hdka/klp-oa into 0.8.X

This commit is contained in:
2025-12-09 16:56:44 +08:00
16 changed files with 1854 additions and 38 deletions

View File

@@ -143,7 +143,9 @@ export function listCoilByIds(coilIds) {
url: '/wms/materialCoil/list',
method: 'get',
params: {
coilIds
coilIds,
pageNum: 1,
pageSize: 1000
}
})
}

View File

@@ -56,4 +56,17 @@ export function getDeliveryReport(query) {
method: 'get',
params: query
})
}
}
/**
* 获取当前可用的钢卷列表
*/
export function listSelectableCoils(planId) {
return request({
url: '/wms/deliveryPlan/selectableCoils',
method: 'get',
params: {
planId: planId
}
})
}