feat(物料管理): 新增入库和出库报表功能并优化界面
重构报表页面结构,新增API接口文件 添加日期范围快速选择功能 实现数据导出Excel功能 更新README项目描述
This commit is contained in:
10
src/api/materialManagement/mmInventoryReport.js
Normal file
10
src/api/materialManagement/mmInventoryReport.js
Normal 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
|
||||
})
|
||||
}
|
||||
10
src/api/materialManagement/mmOutboundReport.js
Normal file
10
src/api/materialManagement/mmOutboundReport.js
Normal 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
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user