|
@@ -93,10 +93,10 @@
|
93
|
93
|
<tr *ngFor="let data of listOfData;let index=index;">
|
94
|
94
|
<td>{{index+(pageIndex-1) * pageSize + 1}}</td>
|
95
|
95
|
<td>{{ data.name }}</td>
|
96
|
|
- <td class="tab_hover" (click)="viewDetail({ data: data, searchDto: searchDto, canceled: checkOptionsOne[0].checked, type: 'total' }, 'deptInspectionRateStatistics')">{{ data.total }}</td>
|
97
|
|
- <td class="tab_hover" (click)="viewDetail({ data: data, searchDto: searchDto, canceled: checkOptionsOne[0].checked, type: 'noCheckCount' }, 'deptInspectionRateStatistics')">{{ data.noCheckCount }}</td>
|
98
|
|
- <td class="tab_hover" (click)="viewDetail({ data: data, searchDto: searchDto, canceled: checkOptionsOne[0].checked, type: 'checkCount' }, 'deptInspectionRateStatistics')">{{ data.checkCount }}</td>
|
99
|
|
- <td class="tab_hover" (click)="viewDetail({ data: data, searchDto: searchDto, canceled: checkOptionsOne[0].checked, type: 'insCount' }, 'deptInspectionRateStatistics')">{{ data.insCount }}</td>
|
|
96
|
+ <td class="tab_hover" (click)="viewDetail({ data: data, searchDto: searchDto, canceled: checkOptionsOne[0].checked, priority: checkOptionsOne[1].checked, type: 'total' }, 'deptInspectionRateStatistics')">{{ data.total }}</td>
|
|
97
|
+ <td class="tab_hover" (click)="viewDetail({ data: data, searchDto: searchDto, canceled: checkOptionsOne[0].checked, priority: checkOptionsOne[1].checked, type: 'noCheckCount' }, 'deptInspectionRateStatistics')">{{ data.noCheckCount }}</td>
|
|
98
|
+ <td class="tab_hover" (click)="viewDetail({ data: data, searchDto: searchDto, canceled: checkOptionsOne[0].checked, priority: checkOptionsOne[1].checked, type: 'checkCount' }, 'deptInspectionRateStatistics')">{{ data.checkCount }}</td>
|
|
99
|
+ <td class="tab_hover" (click)="viewDetail({ data: data, searchDto: searchDto, canceled: checkOptionsOne[0].checked, priority: checkOptionsOne[1].checked, type: 'insCount' }, 'deptInspectionRateStatistics')">{{ data.insCount }}</td>
|
100
|
100
|
<td>{{ data.inspectRate }}%</td>
|
101
|
101
|
<td class="tab_hover" (click)="personDetail({ data: data, searchDto: searchDto})">{{ data.workOrderCount }}</td>
|
102
|
102
|
</tr>
|