永康嘉持电器有限公司前端
小小儁爺
2024-10-10 5a990bb9b8328d23f0aad25c4488f167831a266c
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
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
  })
}