feat(wms): 添加收货报表功能

新增收货报表页面及API接口,包含日期筛选、汇总信息展示和详细数据表格
This commit is contained in:
砂糖
2025-12-12 14:12:48 +08:00
parent d80a3b2cc9
commit f7ed815e3b
2 changed files with 231 additions and 0 deletions

View File

@@ -70,3 +70,14 @@ export function listSelectableCoils(planId) {
}
})
}
/**
* 获取收货报表
*/
export function getReceiptReport(query) {
return request({
url: '/wms/deliveryPlan/receivingReport',
method: 'get',
params: query
})
}