import request from '@/utils/request'
|
|
// 生产进度报表
|
export function ProductionScheduleReportSearch(data) {
|
return request({
|
url: 'ReportManager/ProductionScheduleReportSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 生产进度报表导出
|
export function ProductionScheduleReportExcelSearch(data) {
|
return request({
|
url: 'ReportManager/ProductionScheduleReportExcelSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 班组工资报表记录查询
|
export function GroupSalaryReportSearch(data) {
|
return request({
|
url: 'ReportManager/GroupSalaryReportSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 班组工资报表记录查询
|
export function GroupSalaryReportExcelSearch(data) {
|
return request({
|
url: 'ReportManager/GroupSalaryReportExcelSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 班组工资报表记录查看报工人员
|
export function GroupSalaryReportSearchUser(data) {
|
return request({
|
url: 'ReportManager/GroupSalaryReportSearchUser',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 人员工资明细报表
|
export function PeopleSalaryReportSearch(data) {
|
return request({
|
url: 'ReportManager/PeopleSalaryReportSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 人员工资明细报表导出
|
export function PeopleSalaryReportExcelSearch(data) {
|
return request({
|
url: 'ReportManager/PeopleSalaryReportExcelSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 委外报表记录查询
|
export function OutSourceReportSearch(data) {
|
return request({
|
url: 'ReportManager/OutSourceReportSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 委外报表记录导出
|
export function OutSourceReportExcelSearch(data) {
|
return request({
|
url: 'ReportManager/OutSourceReportExcelSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 不良明细报表
|
export function DefectDetailsReportSearch(data) {
|
return request({
|
url: 'ReportManager/DefectDetailsReportSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 不良明细报表导出
|
export function DefectDetailsReportExcelSearch(data) {
|
return request({
|
url: 'ReportManager/DefectDetailsReportExcelSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 维修明细报表
|
export function MaintenanceDetailsReportSearch(data) {
|
return request({
|
url: 'ReportManager/MaintenanceDetailsReportSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 维修明细报表导出
|
export function MaintenanceDetailsReportExcelSearch(data) {
|
return request({
|
url: 'ReportManager/MaintenanceDetailsReportExcelSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 安灯报表明细
|
export function AnDonReportDefinitSearch(data) {
|
return request({
|
url: 'ReportManager/AnDonReportDefinitSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 安灯报表明细导出
|
export function AnDonReportDefinitExcelSearch(data) {
|
return request({
|
url: 'ReportManager/AnDonReportDefinitExcelSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
// 安灯报表汇总
|
export function AnDonReportSumSearch(data) {
|
return request({
|
url: 'ReportManager/AnDonReportSumSearch',
|
method: 'get',
|
params: data
|
})
|
}
|
// 安灯报表汇总导出
|
export function AnDonReportSumExcelSearch(data) {
|
return request({
|
url: 'ReportManager/AnDonReportSumExcelSearch',
|
method: 'get',
|
params: data
|
})
|
}
|