import request from '@/utils/request'
|
|
// 委外报表记录查询
|
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 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 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 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 QuaneryDefectReportSearch(data) {
|
return request({
|
url: 'ReportManager/QuaneryDefectReportSearch',
|
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 GroupSalaryReportSearchUser(data) {
|
return request({
|
url: 'ReportManager/GroupSalaryReportSearchUser',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 生产进度报表查询
|
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
|
})
|
}
|