feat(物料管理): 新增入库和出库报表功能并优化界面

重构报表页面结构,新增API接口文件
添加日期范围快速选择功能
实现数据导出Excel功能
更新README项目描述
This commit is contained in:
2025-08-15 15:57:26 +08:00
parent e4d0aecb80
commit ebe3b4681b
7 changed files with 663 additions and 235 deletions

View File

@@ -0,0 +1,10 @@
import request from '@/utils/request'
// 获取每日入库报表数据
export function getInventoryReportByPage(data) {
return request({
url: '/mes/mm/mmInventoryReport/GetInventoryReportByPage',
method: 'post',
data: data
})
}

View File

@@ -0,0 +1,10 @@
import request from '@/utils/request'
// 获取每日出库报表数据
export function getOutboundReportByPage(data) {
return request({
url: '/mes/mm/mmOutboundReport/GetOutboundReportByPage',
method: 'post',
data: data
})
}