小小儁爺
2024-11-21 5a254a7606489147ccf6eda046e725019e676b4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
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
  })
}