|
@@ -57,6 +57,7 @@ export class BuildingInspectionRateStatisticsComponent implements OnInit {
|
57
|
57
|
|
58
|
58
|
checkOptionsOne: Array<any> = [
|
59
|
59
|
{ label: "不包含已取消已作废", value: "1", checked: true },
|
|
60
|
+ { label: "不包含临时急查医嘱", value: "2", checked: false },
|
60
|
61
|
];
|
61
|
62
|
|
62
|
63
|
// 边输入边搜索节流阀
|
|
@@ -135,6 +136,7 @@ export class BuildingInspectionRateStatisticsComponent implements OnInit {
|
135
|
136
|
startTime: this.searchDto.dateRange[0] ? format(startOfDay(this.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined,
|
136
|
137
|
endTime: this.searchDto.dateRange[1] ? format(endOfDay(this.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined,
|
137
|
138
|
canceled: this.checkOptionsOne[0].checked ? true : undefined,
|
|
139
|
+ priority: this.checkOptionsOne[1].checked ? 0 : 1,
|
138
|
140
|
deptIds: this.searchDto.department.length ? this.searchDto.department.toString() : undefined,
|
139
|
141
|
buildingId: this.searchDto.building|| undefined,
|
140
|
142
|
};
|
|
@@ -160,6 +162,7 @@ export class BuildingInspectionRateStatisticsComponent implements OnInit {
|
160
|
162
|
startTime: this.searchDto.dateRange[0] ? format(startOfDay(this.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined,
|
161
|
163
|
endTime: this.searchDto.dateRange[1] ? format(endOfDay(this.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined,
|
162
|
164
|
canceled: this.checkOptionsOne[0].checked ? true : undefined,
|
|
165
|
+ priority: this.checkOptionsOne[1].checked ? 0 : 1,
|
163
|
166
|
deptIds: this.searchDto.department.length ? this.searchDto.department.toString() : undefined,
|
164
|
167
|
buildingId: this.searchDto.building|| undefined,
|
165
|
168
|
};
|