Browse Source

增加人员筛选

seimin 1 week ago
parent
commit
b6a324bd11

+ 1 - 1
src/app/views/new-statistics/distribution-inspection-statistics/distribution-synthesize-statistics/distribution-synthesize-statistics.component.html

@@ -155,7 +155,7 @@
155
               </nz-option>
155
               </nz-option>
156
             </nz-select>
156
             </nz-select>
157
           </div>
157
           </div>
158
-          <div class="more" *ngIf="showMore('dateQualityControlStatistics')" (click)="toPath('/newStatistics/distributionInspectionStatistics/dateQualityControlStatistics')">更多></div>
158
+          <div class="more" *ngIf="showMore(activeIndex == 'hour' ? 'hourQualityControlStatistics' : 'dateQualityControlStatistics')" (click)="toPath(activeIndex == 'hour' ? '/newStatistics/distributionInspectionStatistics/hourQualityControlStatistics' : '/newStatistics/distributionInspectionStatistics/dateQualityControlStatistics')">更多></div>
159
         </div>
159
         </div>
160
         <div class="echarts-repairs">
160
         <div class="echarts-repairs">
161
           <div echarts class="echarts" [options]='trendOptions'></div>
161
           <div echarts class="echarts" [options]='trendOptions'></div>

+ 6 - 5
src/app/views/new-statistics/distribution-inspection-statistics/user-business-statistics/user-business-statistics.component.html

@@ -6,10 +6,10 @@
6
       </nz-range-picker>
6
       </nz-range-picker>
7
     </div>
7
     </div>
8
     <div class="searchDataItem">
8
     <div class="searchDataItem">
9
-      <span class="label">分组</span>:
10
-      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeGroupInp($event)" nzAllowClear nzPlaceHolder="请选择分组" [(ngModel)]="groupId" (nzOpenChange)="openChangeGroup($event)">
11
-        <ng-container *ngFor="let option of groupList">
12
-          <nz-option *ngIf="!isLoading" [nzLabel]="option.groupName" [nzValue]="option.id"></nz-option>
9
+      <span class="label">人员</span>:
10
+      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeUserInp($event)" nzAllowClear nzPlaceHolder="请选择人员" [(ngModel)]="userId" (nzOpenChange)="openChangeUser($event)">
11
+        <ng-container *ngFor="let option of userList">
12
+          <nz-option *ngIf="!isLoading" [nzLabel]="option.name" [nzValue]="option.id"></nz-option>
13
         </ng-container>
13
         </ng-container>
14
         <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
14
         <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
15
           <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
15
           <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
@@ -24,7 +24,8 @@
24
     <button nz-button class="btn default ml8" (click)="excelExport()" [nzLoading]="excelExportLoading">导出</button>
24
     <button nz-button class="btn default ml8" (click)="excelExport()" [nzLoading]="excelExportLoading">导出</button>
25
   </div>
25
   </div>
26
 </div>
26
 </div>
27
-<div class="moreFilter" *ngIf="fieldConfig.fields.buildingDTO || fieldConfig.fields.deptDTO">
27
+<div class="moreFilter" *ngIf="fieldConfig.fields.groupDTO || fieldConfig.fields.buildingDTO || fieldConfig.fields.deptDTO">
28
+  <span>{{fieldConfig.fields.groupDTO?.groupName}}</span>
28
   <span>{{fieldConfig.fields.buildingDTO?.buildingName}}</span>
29
   <span>{{fieldConfig.fields.buildingDTO?.buildingName}}</span>
29
   <span>{{fieldConfig.fields.deptDTO?.dept}}</span>
30
   <span>{{fieldConfig.fields.deptDTO?.dept}}</span>
30
 </div>
31
 </div>

+ 26 - 24
src/app/views/new-statistics/distribution-inspection-statistics/user-business-statistics/user-business-statistics.component.ts

@@ -27,7 +27,7 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
27
   listLength: number = 0; //表格总数据量
27
   listLength: number = 0; //表格总数据量
28
   widthConfig: any[] = [];
28
   widthConfig: any[] = [];
29
 
29
 
30
-  groupId;//分组id
30
+  userId;//人员id
31
 
31
 
32
   searchTimerSubject = new Subject();
32
   searchTimerSubject = new Subject();
33
 
33
 
@@ -63,7 +63,7 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
63
   }
63
   }
64
 
64
 
65
   get getMoreFilter(){
65
   get getMoreFilter(){
66
-    let flag = this.fieldConfig.fields.buildingDTO || this.fieldConfig.fields.deptDTO;
66
+    let flag = this.fieldConfig.fields.buildingDTO || this.fieldConfig.fields.deptDTO || this.fieldConfig.fields.groupDTO;
67
     return flag ? 37 : 0;
67
     return flag ? 37 : 0;
68
   }
68
   }
69
 
69
 
@@ -127,8 +127,9 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
127
         endDate: this.dateRange[1] || undefined,
127
         endDate: this.dateRange[1] || undefined,
128
         hosId: this.getHosId,
128
         hosId: this.getHosId,
129
         buildingId: this.fieldConfig.fields.buildingId || undefined,
129
         buildingId: this.fieldConfig.fields.buildingId || undefined,
130
+        groupId: this.fieldConfig.fields.groupId || undefined,
130
         deptId: this.fieldConfig.fields.deptId || undefined,
131
         deptId: this.fieldConfig.fields.deptId || undefined,
131
-        groupId: this.groupId || undefined,
132
+        userId: this.userId || undefined,
132
       };
133
       };
133
       if (field && sort) {
134
       if (field && sort) {
134
         postData.sort = `${field} ${sort === "ascend" ? `asc` : `desc`}`
135
         postData.sort = `${field} ${sort === "ascend" ? `asc` : `desc`}`
@@ -187,8 +188,9 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
187
       endDate: this.dateRange[1] || undefined,
188
       endDate: this.dateRange[1] || undefined,
188
       hosId: this.getHosId,
189
       hosId: this.getHosId,
189
       buildingId: this.fieldConfig.fields.buildingId || undefined,
190
       buildingId: this.fieldConfig.fields.buildingId || undefined,
191
+      groupId: this.fieldConfig.fields.groupId || undefined,
190
       deptId: this.fieldConfig.fields.deptId || undefined,
192
       deptId: this.fieldConfig.fields.deptId || undefined,
191
-      groupId: this.groupId || undefined,
193
+      userId: this.userId || undefined,
192
     };
194
     };
193
     if (this.sortCurrentKey && this.sortCurrentValue) {
195
     if (this.sortCurrentKey && this.sortCurrentValue) {
194
       postData.sort = `${this.sortCurrentKey} ${this.sortCurrentValue === "ascend" ? `asc` : `desc`}`
196
       postData.sort = `${this.sortCurrentKey} ${this.sortCurrentValue === "ascend" ? `asc` : `desc`}`
@@ -222,14 +224,14 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
222
 		this.sortCurrentValue = "";
224
 		this.sortCurrentValue = "";
223
 		this.sortCurrent = {};
225
 		this.sortCurrent = {};
224
     this.dateRange = [format(startOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss'), format(endOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss')]
226
     this.dateRange = [format(startOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss'), format(endOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss')]
225
-    this.groupId = undefined;
226
-    this.fieldConfig.fields = {buildingId: undefined, deptId: undefined};
227
+    this.userId = undefined;
228
+    this.fieldConfig.fields = {buildingId: undefined, deptId: undefined, groupId: undefined};
227
     this.search();
229
     this.search();
228
   }
230
   }
229
 
231
 
230
-  // 分组搜索
231
-  changeGroupInp(e) {
232
-    this.searchTimer(this.getGroupList, e);
232
+  // 人员搜索
233
+  changeUserInp(e) {
234
+    this.searchTimer(this.getUserList, e);
233
   }
235
   }
234
 
236
 
235
   // 防抖
237
   // 防抖
@@ -239,35 +241,35 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
239
     this.searchTimerSubject.next([fun, e]);
241
     this.searchTimerSubject.next([fun, e]);
240
   }
242
   }
241
 
243
 
242
-  openChangeGroup(flag){
243
-    flag && this.getGroupList();
244
+  openChangeUser(flag){
245
+    flag && this.getUserList();
244
   }
246
   }
245
 
247
 
246
-  // 获取分组列表
247
-  groupList:any[] = [];
248
-  getGroupList(keyword?) {
249
-    let data = {
250
-      group2: {
251
-        statisticalHosId: this.getHosId,
252
-        groupName: keyword,
253
-        type: 1,
254
-      },
248
+  // 获取人员列表
249
+  userList:any[] = [];
250
+  getUserList(keyword?) {
251
+    let postData: any = {
255
       idx: 0,
252
       idx: 0,
256
       sum: 20,
253
       sum: 20,
254
+      user: {
255
+        name: keyword,
256
+        simpleQuery: true,
257
+        statisticalHosId: this.getHosId,
258
+      },
257
     };
259
     };
258
     this.isLoading = true;
260
     this.isLoading = true;
259
     this.mainService
261
     this.mainService
260
-      .getFetchDataList("data", "group2", data)
262
+      .getFetchDataList("simple/data", "user", postData)
261
       .subscribe((data) => {
263
       .subscribe((data) => {
262
         this.isLoading = false;
264
         this.isLoading = false;
263
-        this.groupList = data.list;
265
+        this.userList = data.list;
264
       });
266
       });
265
   }
267
   }
266
 
268
 
267
   // 详细搜索
269
   // 详细搜索
268
   fieldConfig:any = {
270
   fieldConfig:any = {
269
-    fields: {buildingId: undefined, deptId: undefined},
270
-    config: {building: true, dept: true},
271
+    fields: {buildingId: undefined, deptId: undefined, groupId: undefined},
272
+    config: {building: true, dept: true, group: undefined},
271
   }
273
   }
272
   showSearchMore:boolean = false;
274
   showSearchMore:boolean = false;
273
   showMore(){
275
   showMore(){

+ 6 - 5
src/app/views/new-statistics/distribution-inspection-statistics/user-quality-control-statistics/user-quality-control-statistics.component.html

@@ -6,10 +6,10 @@
6
       </nz-range-picker>
6
       </nz-range-picker>
7
     </div>
7
     </div>
8
     <div class="searchDataItem">
8
     <div class="searchDataItem">
9
-      <span class="label">分组</span>:
10
-      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeGroupInp($event)" nzAllowClear nzPlaceHolder="请选择分组" [(ngModel)]="groupId" (nzOpenChange)="openChangeGroup($event)">
11
-        <ng-container *ngFor="let option of groupList">
12
-          <nz-option *ngIf="!isLoading" [nzLabel]="option.groupName" [nzValue]="option.id"></nz-option>
9
+      <span class="label">人员</span>:
10
+      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeUserInp($event)" nzAllowClear nzPlaceHolder="请选择人员" [(ngModel)]="userId" (nzOpenChange)="openChangeUser($event)">
11
+        <ng-container *ngFor="let option of userList">
12
+          <nz-option *ngIf="!isLoading" [nzLabel]="option.name" [nzValue]="option.id"></nz-option>
13
         </ng-container>
13
         </ng-container>
14
         <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
14
         <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
15
           <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
15
           <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
@@ -24,7 +24,8 @@
24
     <button nz-button class="btn default ml8" (click)="excelExport()" [nzLoading]="excelExportLoading">导出</button>
24
     <button nz-button class="btn default ml8" (click)="excelExport()" [nzLoading]="excelExportLoading">导出</button>
25
   </div>
25
   </div>
26
 </div>
26
 </div>
27
-<div class="moreFilter" *ngIf="fieldConfig.fields.buildingDTO || fieldConfig.fields.deptDTO">
27
+<div class="moreFilter" *ngIf="fieldConfig.fields.groupDTO || fieldConfig.fields.buildingDTO || fieldConfig.fields.deptDTO">
28
+  <span>{{fieldConfig.fields.groupDTO?.groupName}}</span>
28
   <span>{{fieldConfig.fields.buildingDTO?.buildingName}}</span>
29
   <span>{{fieldConfig.fields.buildingDTO?.buildingName}}</span>
29
   <span>{{fieldConfig.fields.deptDTO?.dept}}</span>
30
   <span>{{fieldConfig.fields.deptDTO?.dept}}</span>
30
 </div>
31
 </div>

+ 26 - 24
src/app/views/new-statistics/distribution-inspection-statistics/user-quality-control-statistics/user-quality-control-statistics.component.ts

@@ -25,7 +25,7 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
25
   pageSize: number = 30; //表格每页展示条数
25
   pageSize: number = 30; //表格每页展示条数
26
   listLength: number = 0; //表格总数据量
26
   listLength: number = 0; //表格总数据量
27
 
27
 
28
-  groupId;//分组id
28
+  userId;//人员id
29
 
29
 
30
   searchTimerSubject = new Subject();
30
   searchTimerSubject = new Subject();
31
 
31
 
@@ -61,7 +61,7 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
61
   }
61
   }
62
 
62
 
63
   get getMoreFilter(){
63
   get getMoreFilter(){
64
-    let flag = this.fieldConfig.fields.userDTO || this.fieldConfig.fields.deptDTO || this.fieldConfig.fields.buildingDTO;
64
+    let flag = this.fieldConfig.fields.userDTO || this.fieldConfig.fields.deptDTO || this.fieldConfig.fields.buildingDTO || this.fieldConfig.fields.groupDTO;
65
     return flag ? 37 : 0;
65
     return flag ? 37 : 0;
66
   }
66
   }
67
 
67
 
@@ -116,8 +116,9 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
116
       startDate: this.dateRange[0] || undefined,
116
       startDate: this.dateRange[0] || undefined,
117
       endDate: this.dateRange[1] || undefined,
117
       endDate: this.dateRange[1] || undefined,
118
       hosId: this.getHosId,
118
       hosId: this.getHosId,
119
-      groupId: this.groupId || undefined,
119
+      userId: this.userId || undefined,
120
       buildingId: this.fieldConfig.fields.buildingId || undefined,
120
       buildingId: this.fieldConfig.fields.buildingId || undefined,
121
+      groupId: this.fieldConfig.fields.groupId || undefined,
121
       deptId: this.fieldConfig.fields.deptId || undefined,
122
       deptId: this.fieldConfig.fields.deptId || undefined,
122
     };
123
     };
123
     if (field && sort) {
124
     if (field && sort) {
@@ -175,8 +176,9 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
175
       startDate: this.dateRange[0] || undefined,
176
       startDate: this.dateRange[0] || undefined,
176
       endDate: this.dateRange[1] || undefined,
177
       endDate: this.dateRange[1] || undefined,
177
       hosId: this.getHosId,
178
       hosId: this.getHosId,
178
-      groupId: this.groupId || undefined,
179
+      userId: this.userId || undefined,
179
       buildingId: this.fieldConfig.fields.buildingId || undefined,
180
       buildingId: this.fieldConfig.fields.buildingId || undefined,
181
+      groupId: this.fieldConfig.fields.groupId || undefined,
180
       deptId: this.fieldConfig.fields.deptId || undefined,
182
       deptId: this.fieldConfig.fields.deptId || undefined,
181
     };
183
     };
182
     if (this.sortCurrentKey && this.sortCurrentValue) {
184
     if (this.sortCurrentKey && this.sortCurrentValue) {
@@ -211,14 +213,14 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
211
 		this.sortCurrentValue = "";
213
 		this.sortCurrentValue = "";
212
 		this.sortCurrent = {};
214
 		this.sortCurrent = {};
213
     this.dateRange = [format(startOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss'), format(endOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss')]
215
     this.dateRange = [format(startOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss'), format(endOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss')]
214
-    this.groupId = undefined;
215
-    this.fieldConfig.fields = {buildingId: undefined, deptId: undefined};
216
+    this.userId = undefined;
217
+    this.fieldConfig.fields = {buildingId: undefined, deptId: undefined, groupId: undefined};
216
     this.search();
218
     this.search();
217
   }
219
   }
218
 
220
 
219
-  // 楼栋搜索
220
-  changeGroupInp(e) {
221
-    this.searchTimer(this.getGroupList, e);
221
+  // 人员搜索
222
+  changeUserInp(e) {
223
+    this.searchTimer(this.getUserList, e);
222
   }
224
   }
223
 
225
 
224
   // 防抖
226
   // 防抖
@@ -228,35 +230,35 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
228
     this.searchTimerSubject.next([fun, e]);
230
     this.searchTimerSubject.next([fun, e]);
229
   }
231
   }
230
 
232
 
231
-  openChangeGroup(flag){
232
-    flag && this.getGroupList();
233
+  openChangeUser(flag){
234
+    flag && this.getUserList();
233
   }
235
   }
234
 
236
 
235
-  // 获取分组列表
236
-  groupList:any[] = [];
237
-  getGroupList(keyword?) {
238
-    let data = {
239
-      group2: {
240
-        statisticalHosId: this.getHosId,
241
-        groupName: keyword,
242
-        type: 1,
243
-      },
237
+  // 获取人员列表
238
+  userList:any[] = [];
239
+  getUserList(keyword?) {
240
+    let postData: any = {
244
       idx: 0,
241
       idx: 0,
245
       sum: 20,
242
       sum: 20,
243
+      user: {
244
+        name: keyword,
245
+        simpleQuery: true,
246
+        statisticalHosId: this.getHosId,
247
+      },
246
     };
248
     };
247
     this.isLoading = true;
249
     this.isLoading = true;
248
     this.mainService
250
     this.mainService
249
-      .getFetchDataList("data", "group2", data)
251
+      .getFetchDataList("simple/data", "user", postData)
250
       .subscribe((data) => {
252
       .subscribe((data) => {
251
         this.isLoading = false;
253
         this.isLoading = false;
252
-        this.groupList = data.list;
254
+        this.userList = data.list;
253
       });
255
       });
254
   }
256
   }
255
 
257
 
256
   // 详细搜索
258
   // 详细搜索
257
   fieldConfig:any = {
259
   fieldConfig:any = {
258
-    fields: {buildingId: undefined, deptId: undefined},
259
-    config: {building: true, dept: true},
260
+    fields: {buildingId: undefined, deptId: undefined, groupId: undefined},
261
+    config: {building: true, dept: true, group: true},
260
   }
262
   }
261
   showSearchMore:boolean = false;
263
   showSearchMore:boolean = false;
262
   showMore(){
264
   showMore(){

+ 6 - 5
src/app/views/new-statistics/maintenance-statistics/user-statistics/user-statistics.component.html

@@ -2,10 +2,10 @@
2
   <div class="searchData">
2
   <div class="searchData">
3
     <app-custom-change-date #customChangeDate [isShowType]="false"></app-custom-change-date>
3
     <app-custom-change-date #customChangeDate [isShowType]="false"></app-custom-change-date>
4
     <div class="searchDataItem">
4
     <div class="searchDataItem">
5
-      <span class="label">维修分组</span>:
6
-      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeGroupInp($event)" nzAllowClear nzPlaceHolder="请选择维修分组" [(ngModel)]="groupId" (nzOpenChange)="openChangeGroup($event)">
7
-        <ng-container *ngFor="let option of groupList">
8
-          <nz-option *ngIf="!isLoading" [nzLabel]="option.groupName" [nzValue]="option.id"></nz-option>
5
+      <span class="label">维修人员</span>:
6
+      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeUserInp($event)" nzAllowClear nzPlaceHolder="请选择维修人员" [(ngModel)]="userId" (nzOpenChange)="openChangeUser($event)">
7
+        <ng-container *ngFor="let option of userList">
8
+          <nz-option *ngIf="!isLoading" [nzLabel]="option.name" [nzValue]="option.id"></nz-option>
9
         </ng-container>
9
         </ng-container>
10
         <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
10
         <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
11
           <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
11
           <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
@@ -20,7 +20,8 @@
20
     <button nz-button class="btn default ml8" (click)="excelExport()" [nzLoading]="excelExportLoading">导出</button>
20
     <button nz-button class="btn default ml8" (click)="excelExport()" [nzLoading]="excelExportLoading">导出</button>
21
   </div>
21
   </div>
22
 </div>
22
 </div>
23
-<div class="moreFilter" *ngIf="fieldConfig.fields.buildingDTO || fieldConfig.fields.floorDTO || fieldConfig.fields.category1DTO || fieldConfig.fields.category2DTO || fieldConfig.fields.category3DTO">
23
+<div class="moreFilter" *ngIf="fieldConfig.fields.groupDTO || fieldConfig.fields.buildingDTO || fieldConfig.fields.floorDTO || fieldConfig.fields.category1DTO || fieldConfig.fields.category2DTO || fieldConfig.fields.category3DTO">
24
+  <span>{{fieldConfig.fields.groupDTO?.groupName}}</span>
24
   <span>{{fieldConfig.fields.category1DTO?.category}}</span>
25
   <span>{{fieldConfig.fields.category1DTO?.category}}</span>
25
   <span>{{fieldConfig.fields.category2DTO?.category}}</span>
26
   <span>{{fieldConfig.fields.category2DTO?.category}}</span>
26
   <span>{{fieldConfig.fields.category3DTO?.category}}</span>
27
   <span>{{fieldConfig.fields.category3DTO?.category}}</span>

+ 25 - 21
src/app/views/new-statistics/maintenance-statistics/user-statistics/user-statistics.component.ts

@@ -26,7 +26,7 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
26
   pageSize: number = 30; //表格每页展示条数
26
   pageSize: number = 30; //表格每页展示条数
27
   listLength: number = 0; //表格总数据量
27
   listLength: number = 0; //表格总数据量
28
 
28
 
29
-  groupId;//维修分组id
29
+  userId;//维修人员id
30
 
30
 
31
   searchTimerSubject = new Subject();
31
   searchTimerSubject = new Subject();
32
 
32
 
@@ -65,7 +65,7 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
65
   }
65
   }
66
 
66
 
67
   get getMoreFilter(){
67
   get getMoreFilter(){
68
-    let flag = this.fieldConfig.fields.buildingDTO || this.fieldConfig.fields.floorDTO || this.fieldConfig.fields.category1DTO || this.fieldConfig.fields.category2DTO || this.fieldConfig.fields.category3DTO;
68
+    let flag = this.fieldConfig.fields.groupDTO || this.fieldConfig.fields.buildingDTO || this.fieldConfig.fields.floorDTO || this.fieldConfig.fields.category1DTO || this.fieldConfig.fields.category2DTO || this.fieldConfig.fields.category3DTO;
69
     return flag ? 37 : 0;
69
     return flag ? 37 : 0;
70
   }
70
   }
71
 
71
 
@@ -122,11 +122,12 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
122
       hosId: this.hosId || undefined,
122
       hosId: this.hosId || undefined,
123
       dutyId: this.dutyId || undefined,
123
       dutyId: this.dutyId || undefined,
124
       parentDutyId: this.parentDutyId || undefined,
124
       parentDutyId: this.parentDutyId || undefined,
125
-      groupId: this.groupId || undefined,
125
+      userId: this.userId || undefined,
126
       buildingId: this.fieldConfig.fields.buildingId || undefined,
126
       buildingId: this.fieldConfig.fields.buildingId || undefined,
127
       placeId: this.fieldConfig.fields.floorId || undefined,
127
       placeId: this.fieldConfig.fields.floorId || undefined,
128
       categoryId: this.fieldConfig.fields.categoryId || undefined,
128
       categoryId: this.fieldConfig.fields.categoryId || undefined,
129
       hierarchy: this.fieldConfig.fields.hierarchy || undefined,
129
       hierarchy: this.fieldConfig.fields.hierarchy || undefined,
130
+      groupId: this.fieldConfig.fields.groupId || undefined,
130
     };
131
     };
131
     if (field && sort) {
132
     if (field && sort) {
132
       postData.sort = `${field} ${sort === "ascend" ? `asc` : `desc`}`
133
       postData.sort = `${field} ${sort === "ascend" ? `asc` : `desc`}`
@@ -173,11 +174,12 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
173
       hosId: this.hosId || undefined,
174
       hosId: this.hosId || undefined,
174
       dutyId: this.dutyId || undefined,
175
       dutyId: this.dutyId || undefined,
175
       parentDutyId: this.parentDutyId || undefined,
176
       parentDutyId: this.parentDutyId || undefined,
176
-      groupId: this.groupId || undefined,
177
+      userId: this.userId || undefined,
177
       buildingId: this.fieldConfig.fields.buildingId || undefined,
178
       buildingId: this.fieldConfig.fields.buildingId || undefined,
178
       placeId: this.fieldConfig.fields.floorId || undefined,
179
       placeId: this.fieldConfig.fields.floorId || undefined,
179
       categoryId: this.fieldConfig.fields.categoryId || undefined,
180
       categoryId: this.fieldConfig.fields.categoryId || undefined,
180
       hierarchy: this.fieldConfig.fields.hierarchy || undefined,
181
       hierarchy: this.fieldConfig.fields.hierarchy || undefined,
182
+      groupId: this.fieldConfig.fields.groupId || undefined,
181
     };
183
     };
182
     if (this.sortCurrentKey && this.sortCurrentValue) {
184
     if (this.sortCurrentKey && this.sortCurrentValue) {
183
       postData.sort = `${this.sortCurrentKey} ${this.sortCurrentValue === "ascend" ? `asc` : `desc`}`
185
       postData.sort = `${this.sortCurrentKey} ${this.sortCurrentValue === "ascend" ? `asc` : `desc`}`
@@ -211,15 +213,15 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
211
 		this.sortCurrentValue = "";
213
 		this.sortCurrentValue = "";
212
 		this.sortCurrent = {};
214
 		this.sortCurrent = {};
213
     this.dateRange = []
215
     this.dateRange = []
214
-    this.groupId = undefined;
215
-    this.fieldConfig.fields = {buildingId: undefined, floorId: undefined, categoryId: undefined};
216
+    this.userId = undefined;
217
+    this.fieldConfig.fields = {buildingId: undefined, floorId: undefined, categoryId: undefined, groupId: undefined};
216
     this.customChangeDateComponent.resetByDate();
218
     this.customChangeDateComponent.resetByDate();
217
     this.search();
219
     this.search();
218
   }
220
   }
219
 
221
 
220
-  // 维修分组搜索
221
-  changeGroupInp(e) {
222
-    this.searchTimer(this.getGroupList, e);
222
+  // 维修人员搜索
223
+  changeUserInp(e) {
224
+    this.searchTimer(this.getUserList, e);
223
   }
225
   }
224
 
226
 
225
   // 防抖
227
   // 防抖
@@ -229,35 +231,37 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
229
     this.searchTimerSubject.next([fun, e]);
231
     this.searchTimerSubject.next([fun, e]);
230
   }
232
   }
231
 
233
 
232
-  openChangeGroup(flag){
233
-    flag && this.getGroupList();
234
+  openChangeUser(flag){
235
+    flag && this.getUserList();
234
   }
236
   }
235
 
237
 
236
-  // 获取维修分组列表
237
-  groupList:any[] = [];
238
-  getGroupList(keyword?) {
238
+  // 获取维修人员列表
239
+  userList:any[] = [];
240
+  getUserList(keyword?) {
239
     let data = {
241
     let data = {
240
-      group2: {
242
+      user: {
243
+        name: keyword,
244
+        simpleQuery: true,
241
         statisticalHosId: this.getHosId,
245
         statisticalHosId: this.getHosId,
242
-        groupName: keyword,
243
-        type: 3,
246
+        roleCodes: 'first-line support,second-line support,incident manager',
247
+        engineer: 1,
244
       },
248
       },
245
       idx: 0,
249
       idx: 0,
246
       sum: 20,
250
       sum: 20,
247
     };
251
     };
248
     this.isLoading = true;
252
     this.isLoading = true;
249
     this.mainService
253
     this.mainService
250
-      .getFetchDataList("data", "group2", data)
254
+      .getFetchDataList("simple/data", "user", data)
251
       .subscribe((data) => {
255
       .subscribe((data) => {
252
         this.isLoading = false;
256
         this.isLoading = false;
253
-        this.groupList = data.list;
257
+        this.userList = data.list;
254
       });
258
       });
255
   }
259
   }
256
 
260
 
257
   // 详细搜索
261
   // 详细搜索
258
   fieldConfig:any = {
262
   fieldConfig:any = {
259
-    fields: {buildingId: undefined, floorId: undefined, categoryId: undefined},
260
-    config: {buildingAndFloor: true, category123: true},
263
+    fields: {buildingId: undefined, floorId: undefined, categoryId: undefined, groupId: undefined},
264
+    config: {buildingAndFloor: true, category123: true, group: true},
261
   }
265
   }
262
   showSearchMore:boolean = false;
266
   showSearchMore:boolean = false;
263
   showMore(){
267
   showMore(){