department-evaluate-statistics.component.ts 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. import { TabService } from './../../services/tab.service';
  2. import { NzMessageService } from 'ng-zorro-antd/message';
  3. import { format, addMonths, startOfMonth, endOfMonth, startOfDay, endOfDay } from 'date-fns';
  4. import { Component, OnInit, HostListener, AfterViewInit } from "@angular/core";
  5. import { MainService } from 'src/app/services/main.service';
  6. import { ActivatedRoute } from '@angular/router';
  7. import { ToolService } from "../../../../services/tool.service";
  8. import { Subject } from "rxjs";
  9. import { debounceTime } from "rxjs/operators";
  10. @Component({
  11. selector: "app-department-evaluate-statistics",
  12. templateUrl: "./department-evaluate-statistics.component.html",
  13. styleUrls: ["./department-evaluate-statistics.component.less"],
  14. })
  15. export class DepartmentEvaluateStatisticsComponent implements OnInit, AfterViewInit {
  16. constructor(
  17. private mainService: MainService,
  18. private message: NzMessageService,
  19. private route: ActivatedRoute,
  20. private tabService: TabService,
  21. private tool: ToolService,
  22. ) {}
  23. listOfData: any[] = []; //表格数据
  24. listOfDataEnd: any[] = []; //表格合计
  25. pageIndex: number = 1; //表格当前页码
  26. pageSize: number = 30; //表格每页展示条数
  27. listLength: number = 0; //表格总数据量
  28. hospital:any;
  29. deptTypeId;//科室类型id
  30. deptId;
  31. searchTimerSubject = new Subject();
  32. ngOnInit() {
  33. this.hospital = this.tool.getCurrentHospital().id
  34. this.searchTimerSubject.pipe(debounceTime(500)).subscribe((v) => {
  35. let fun = v[0];
  36. fun.call(this, v[1]);
  37. });
  38. this.initSessionData();
  39. this.getQueryParams();
  40. this.getDeparts();
  41. this.search();
  42. }
  43. ngAfterViewInit(){
  44. this.onResize();
  45. }
  46. tableHeight:number = 0;
  47. @HostListener('window:resize')
  48. onResize(): void {
  49. setTimeout(() => {
  50. this.tableHeight = window.innerHeight - (document.querySelector('.searchDataWrap') as HTMLElement).offsetHeight - 64 - 36 - 48 - 8 - (document.querySelector('.ant-table-header') as HTMLElement).offsetHeight - 55 - this.getMoreFilter + 14;
  51. }, 0)
  52. }
  53. getQueryParams(){
  54. let queryParams = this.tabService.getQueryParams();
  55. this.tabService.clearQueryParams();
  56. if(queryParams.dateRange){
  57. this.dateRange = queryParams.dateRange;
  58. }
  59. }
  60. get getMoreFilter(){
  61. let flag = this.fieldConfig.fields.groupDTO || this.fieldConfig.fields.userDTO || this.fieldConfig.fields.category1DTO || this.fieldConfig.fields.category2DTO || this.fieldConfig.fields.category3DTO || this.fieldConfig.fields.buildingDTO || this.fieldConfig.fields.floorDTO;
  62. return flag ? 37 : 0;
  63. }
  64. // 初始化缓存数据
  65. queryType:any;
  66. hosId:any;
  67. dutyId:any;
  68. parentDutyId:any;
  69. parent:any;
  70. initSessionData(){
  71. let newStatistics = JSON.parse(sessionStorage.getItem('newStatistics'));
  72. let queryType:any = newStatistics.queryType;
  73. let hosId:any = newStatistics.hospitalId;
  74. let dutyId:any = newStatistics.dutyId;
  75. this.parent = newStatistics.parent;
  76. queryType = queryType ? +queryType : undefined;
  77. hosId = hosId ? +hosId : undefined;
  78. dutyId = dutyId ? +dutyId : undefined;
  79. this.queryType = queryType;
  80. if(queryType == 1){
  81. this.hosId = undefined;
  82. this.dutyId = undefined;
  83. this.parentDutyId = undefined;
  84. }else if(queryType == 2){
  85. this.hosId = hosId;
  86. this.dutyId = undefined;
  87. this.parentDutyId = undefined;
  88. }else if(queryType == 3){
  89. this.hosId = undefined;
  90. this.dutyId = dutyId;
  91. this.parentDutyId = undefined;
  92. }else if(queryType == 4){
  93. this.hosId = undefined;
  94. this.dutyId = undefined;
  95. this.parentDutyId = dutyId;
  96. }
  97. }
  98. get getHosId(){
  99. return this.parentDutyId || this.dutyId || this.hosId;
  100. }
  101. // 表格数据
  102. loading1 = false;
  103. widthStyle:any;
  104. widthValue:any;
  105. widthConfig:any = [];
  106. getList(num?: number, field?: string, sort?: string) {
  107. if (num !== undefined) {
  108. this.pageIndex = num;
  109. }
  110. let postData:any = {
  111. idx: this.pageIndex - 1,
  112. sum: this.pageSize,
  113. showParentDept: this.parent==1 ? 'true' : undefined,
  114. startDate: this.dateRange[0] || undefined,
  115. endDate: this.dateRange[1] || undefined,
  116. hosId: this.hosId || undefined,
  117. dutyId: this.dutyId || undefined,
  118. repairDeptId: this.deptId || undefined,
  119. parentDutyId: this.parentDutyId || undefined,
  120. deptTypeId: this.fieldConfig.fields.deptTypeId || undefined,
  121. groupId: this.fieldConfig.fields.userId ? undefined : (this.fieldConfig.fields.groupId || undefined),
  122. userId: this.fieldConfig.fields.userId || undefined,
  123. categoryId: this.fieldConfig.fields.categoryId || undefined,
  124. hierarchy: this.fieldConfig.fields.hierarchy || undefined,
  125. buildingId: this.fieldConfig.fields.buildingId || undefined,
  126. placeId: this.fieldConfig.fields.floorId || undefined,
  127. };
  128. if (field && sort) {
  129. postData.sort = `${field} ${sort === "ascend" ? `asc` : `desc`}`
  130. }
  131. if(this.parent==1){
  132. this.widthConfig = new Array(11).fill('100px').map((v, i) => { return (i == 0 || i == 1 && this.parent==1) || (i == 0 && this.parent==0) ? '150px' : '100px' });;
  133. this.widthStyle = '9%'
  134. this.widthValue = 12 * 100 + 300 * 1 + 20
  135. }else{
  136. this.widthConfig = new Array(10).fill('100px').map((v, i) => { return (i == 0 || i == 1 && this.parent==1) || (i == 0 && this.parent==0) ? '150px' : '100px' });;
  137. this.widthStyle = '10%'
  138. this.widthValue = 11 * 100 + 150 * 1 + 20
  139. }
  140. this.loading1 = true;
  141. this.mainService
  142. .postCustom("itsm/report", "deptEvaluate", postData)
  143. .subscribe((result) => {
  144. this.loading1 = false;
  145. this.listOfData = result.dataList.filter((v, i) => { return i != result.dataList.length - 1 });
  146. this.listOfDataEnd = result.dataList.filter((v, i) => { return i == result.dataList.length - 1 });
  147. this.listLength = result.totalCount;
  148. });
  149. }
  150. // 列表排序
  151. sortCurrent:any = {};
  152. sortCurrentKey: string = "";
  153. sortCurrentValue: string | null = "";
  154. sort(e) {
  155. const { key, value } = e;
  156. this.sortCurrentKey = key;
  157. this.sortCurrentValue = value;
  158. this.getList(this.pageIndex, this.sortCurrentKey, this.sortCurrentValue);
  159. }
  160. // 搜索
  161. search() {
  162. this.getList(1, this.sortCurrentKey, this.sortCurrentValue);
  163. }
  164. // 日期选择
  165. dateRange: any = [format(startOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss'), format(endOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss')];
  166. changeDate(result?): void {
  167. result[0] = format(startOfDay(result[0]), 'yyyy-MM-dd HH:mm:ss');
  168. result[1] = format(endOfDay(result[1]), 'yyyy-MM-dd HH:mm:ss');
  169. this.dateRange = result;
  170. }
  171. onCalendarChangeDate(dateArr){
  172. console.log(dateArr)
  173. if(dateArr.length == 2){
  174. this.dateRange = [format(startOfDay(dateArr[0]), 'yyyy-MM-dd HH:mm:ss'), format(endOfDay(dateArr[1]), 'yyyy-MM-dd HH:mm:ss')];
  175. }
  176. }
  177. // 导出
  178. excelExportLoading:any = false;
  179. excelExport(){
  180. this.excelExportLoading = this.message.loading("导出中..", {
  181. nzDuration: 0,
  182. }).messageId;
  183. let postData:any = {
  184. showParentDept: this.parent==1 ? 'true' : undefined,
  185. startDate: this.dateRange[0] || undefined,
  186. endDate: this.dateRange[1] || undefined,
  187. hosId: this.hosId || undefined,
  188. dutyId: this.dutyId || undefined,
  189. parentDutyId: this.parentDutyId || undefined,
  190. deptTypeId: this.fieldConfig.fields.deptTypeId || undefined,
  191. repairDeptId: this.deptId || undefined,
  192. groupId: this.fieldConfig.fields.userId ? undefined : (this.fieldConfig.fields.groupId || undefined),
  193. userId: this.fieldConfig.fields.userId || undefined,
  194. categoryId: this.fieldConfig.fields.categoryId || undefined,
  195. hierarchy: this.fieldConfig.fields.hierarchy || undefined,
  196. buildingId: this.fieldConfig.fields.buildingId || undefined,
  197. placeId: this.fieldConfig.fields.floorId || undefined,
  198. };
  199. if (this.sortCurrentKey && this.sortCurrentValue) {
  200. postData.sort = `${this.sortCurrentKey} ${this.sortCurrentValue === "ascend" ? `asc` : `desc`}`
  201. }
  202. this.mainService
  203. .postExportCustom("itsm/export", "deptEvaluate", postData)
  204. .subscribe((data) => {
  205. this.message.remove(this.excelExportLoading);
  206. this.excelExportLoading = false;
  207. this.message.success('导出成功');
  208. var file = new Blob([data], {
  209. type: "application/vnd.ms-excel",
  210. });
  211. //trick to download store a file having its URL
  212. var fileURL = URL.createObjectURL(file);
  213. var a = document.createElement("a");
  214. a.href = fileURL;
  215. a.target = "_blank";
  216. a.download = `${this.route.parent.routeConfig.data.title}.xls`;
  217. document.body.appendChild(a);
  218. a.click();
  219. },(err) => {
  220. this.message.remove(this.excelExportLoading);
  221. this.excelExportLoading = false;
  222. this.message.error('导出失败');
  223. });
  224. }
  225. // 重置
  226. reset(){
  227. this.sortCurrentKey = "";
  228. this.sortCurrentValue = "";
  229. this.sortCurrent = {};
  230. 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')]
  231. this.deptId = undefined;
  232. this.fieldConfig.fields = {groupId: undefined, userId: undefined, categoryId: undefined, buildingId: undefined, floorId: undefined, deptTypeId: undefined};
  233. this.search();
  234. }
  235. // 防抖
  236. isLoading = false;
  237. openChangeDeptType(flag){
  238. flag && this.getDeptTypeList();
  239. }
  240. // 科室搜索
  241. changeInp(e) {
  242. this.searchTimer(this.getDeparts, e);
  243. }
  244. // 边输入边搜索节流阀
  245. searchTimer(fun, e) {
  246. this.isLoading = true;
  247. this.searchTimerSubject.next([fun, e]);
  248. }
  249. // 获取所有科室
  250. alldepart:any;
  251. getDeparts(dept?) {
  252. let data = {
  253. department: {
  254. statisticalHosId: this.getHosId,
  255. dept: dept,
  256. searchType: 1,
  257. },
  258. idx: 0,
  259. sum: 20,
  260. };
  261. this.mainService
  262. .getFetchDataList("data", "department", data)
  263. .subscribe((data) => {
  264. this.isLoading = false;
  265. this.alldepart = data.list;
  266. });
  267. }
  268. // 获取科室类型列表
  269. deptTypeList:any[] = [];
  270. getDeptTypeList(keyword?) {
  271. this.isLoading = true;
  272. this.mainService
  273. .getDictionary("list", "dept_type")
  274. .subscribe((data) => {
  275. this.isLoading = false;
  276. this.deptTypeList = data;
  277. });
  278. }
  279. // 详细搜索
  280. fieldConfig:any = {
  281. fields: {groupId: undefined, userId: undefined, categoryId: undefined, buildingId: undefined, floorId: undefined, deptTypeId: undefined},
  282. config: {groupAndUser: true, category123: true, buildingAndFloor: true, deptType: true},
  283. }
  284. showSearchMore:boolean = false;
  285. showMore(){
  286. this.showSearchMore = true;
  287. }
  288. cancelEvent(){
  289. this.showSearchMore = false;
  290. }
  291. submitEvent(fields){
  292. this.showSearchMore = false;
  293. this.fieldConfig.fields = fields;
  294. console.log('this.fieldConfig.fields:', this.fieldConfig.fields)
  295. this.search();
  296. this.onResize();
  297. }
  298. }