AssistanceApplyController.java 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. package com.yihu.ehr.svrinspection.controller;
  2. import com.fasterxml.jackson.databind.ObjectMapper;
  3. import com.yihu.ehr.controller.EnvelopRestEndPoint;
  4. import com.yihu.ehr.svrinspection.commons.exception.ManageException;
  5. import com.yihu.ehr.svrinspection.model.AssistanceApplyModel;
  6. import com.yihu.ehr.svrinspection.service.AssistanceApplyService;
  7. import com.yihu.ehr.svrinspection.service.ExamStatisticsService;
  8. import com.yihu.ehr.util.rest.Envelop;
  9. import io.swagger.annotations.Api;
  10. import io.swagger.annotations.ApiOperation;
  11. import io.swagger.annotations.ApiParam;
  12. import org.springframework.beans.factory.annotation.Autowired;
  13. import org.springframework.http.MediaType;
  14. import org.springframework.web.bind.annotation.*;
  15. import javax.servlet.http.HttpServletRequest;
  16. import javax.servlet.http.HttpServletResponse;
  17. import java.io.IOException;
  18. import java.text.ParseException;
  19. import java.util.List;
  20. import java.util.Map;
  21. /**
  22. * 机构检验申请控制类
  23. *
  24. * @author HZY
  25. * @created 2018/11/9 16:23
  26. */
  27. @RequestMapping( "/api/v1.1/exam")
  28. @RestController
  29. @Api(value = "assistanceApply", description = "区域检验相关接口", tags = {"区域检验"})
  30. public class AssistanceApplyController extends EnvelopRestEndPoint {
  31. @Autowired
  32. private ObjectMapper objectMapper;
  33. @Autowired
  34. private AssistanceApplyService assistanceApplyService;
  35. @Autowired
  36. private ExamStatisticsService examStatisticsService;
  37. @GetMapping(value = "/area")
  38. @ApiOperation(value = "区域检验-【区域排行】")
  39. public Envelop examAreaRanking(
  40. @ApiParam(name = "pid", value = "上级区域编码", defaultValue = "361100")
  41. @RequestParam(value = "pid", required = false,defaultValue = "361100") Integer pid,
  42. @ApiParam(name = "eventDate", value = "就诊时间(年月)",required = true, defaultValue = "")
  43. @RequestParam(value = "eventDate", required = false) String eventDate) throws Exception {
  44. List<Map<String,Object>> list = examStatisticsService.areaGroupCount(pid,"org_area",eventDate);
  45. return success(list);
  46. }
  47. @GetMapping(value = "/hospital")
  48. @ApiOperation(value = "区域检验-【医院排行】")
  49. public Envelop examHospitalRanking(
  50. @ApiParam(name = "areaCode", value = "区域编码(为空显示全市数据)", defaultValue = "")
  51. @RequestParam(value = "areaCode", required = false) String areaCode,
  52. @ApiParam(name = "eventDate", value = "就诊时间(年月)", defaultValue = "")
  53. @RequestParam(value = "eventDate", required = false) String eventDate) {
  54. List<Map<String,Object>> list = null;
  55. try {
  56. list = examStatisticsService.hospitalGroupCount(areaCode,"org_code",eventDate);
  57. } catch (Exception e) {
  58. return failed(e.getMessage());
  59. }
  60. return success(list);
  61. }
  62. @GetMapping(value = "/statistics")
  63. @ApiOperation(value = "区域检验数-【统计信息】",notes = "包含今日新增量,检验次数业务分布")
  64. public Envelop statistics(
  65. @ApiParam(name = "areaCode", value = "区域编码(不传默认全市)", defaultValue = "")
  66. @RequestParam(value = "areaCode", required = false) String areaCode,
  67. @ApiParam(name = "date", value = "日期", defaultValue = "")
  68. @RequestParam(value = "date", required = false) String date) throws IOException {
  69. Map<String,Object> map = null;
  70. try {
  71. map = examStatisticsService.areaExamStatistics(areaCode,date);
  72. } catch (ManageException e) {
  73. return failed(e.getMessage());
  74. } catch (Exception e) {
  75. return failed(e.getMessage());
  76. }
  77. return success(map);
  78. }
  79. @GetMapping(value = "/organizations/statistics")
  80. @ApiOperation(value = "机构今日检验统计查询-【医生端-头部统计信息】",notes = "医生端的头部统计信息,数据为当日的数据统计")
  81. public Envelop orgStatistics(
  82. @ApiParam(name = "orgCode", value = "机构编码(不传默认全市)", defaultValue = "")
  83. @RequestParam(value = "orgCode", required = false) String orgCode) throws IOException {
  84. Map<String,Object> map = null;
  85. try {
  86. map = examStatisticsService.organizationExamStatistics(orgCode);
  87. } catch (ManageException e) {
  88. return failed(e.getMessage());
  89. } catch (Exception e) {
  90. return failed(e.getMessage());
  91. }
  92. return success(map);
  93. }
  94. @GetMapping(value = "/organizations/basic/statistics")
  95. @ApiOperation(value = "机构今日检验统计查询-【基层机构端-头部统计信息】",notes = "基层机构端的头部统计信息,主要包含总检验数,及今日已处理数,今日未处理数")
  96. public Envelop basicOrgStatistics(
  97. @ApiParam(name = "orgCode", value = "机构编码(不传默认全市)", defaultValue = "")
  98. @RequestParam(value = "orgCode", required = false) String orgCode) throws IOException {
  99. Map<String,Object> map = null;
  100. try {
  101. map = examStatisticsService.basicOrgExamStatistics(orgCode);
  102. } catch (ManageException e) {
  103. return failed(e.getMessage());
  104. } catch (Exception e) {
  105. return failed(e.getMessage());
  106. }
  107. return success(map);
  108. }
  109. @GetMapping(value = "/apply/list")
  110. @ApiOperation(value = "机构申请/处理列表查询",notes = "filters 的like查询用“?”,")
  111. public Envelop applyList(
  112. @ApiParam(name = "fields", value = "返回的字段,为空返回全部字段", defaultValue = "")
  113. @RequestParam(value = "fields", required = false) String fields,
  114. @ApiParam(name = "filters", value = "过滤器,like用?,为空检索所有信息eg:applyOrg=jkzl;createTime>=2018-11-14T18:43:57Z;createTime<2018-11-14T22:59:59Z;", defaultValue = "")
  115. @RequestParam(value = "filters", required = false) String filters,
  116. @ApiParam(name = "sorts", value = "排序,升序+,降序-(eg:+id)", defaultValue = "+id")
  117. @RequestParam(value = "sorts", required = false) String sorts,
  118. @ApiParam(name = "size", value = "分页大小", defaultValue = "15")
  119. @RequestParam(value = "size", required = false) int size,
  120. @ApiParam(name = "page", value = "页码", defaultValue = "1")
  121. @RequestParam(value = "page", required = false) int page,
  122. HttpServletRequest request,
  123. HttpServletResponse response) throws IOException, ParseException {
  124. List<AssistanceApplyModel> assistanceApplyModelList = (List<AssistanceApplyModel>)assistanceApplyService.search(fields, filters, sorts, page, size);
  125. Envelop envelop = new Envelop();
  126. envelop.setTotalCount((int)assistanceApplyService.getCount(filters));
  127. envelop.setCurrPage(page);
  128. envelop.setPageSize(size);
  129. envelop.setDetailModelList(assistanceApplyModelList);
  130. envelop.setSuccessFlg(true);
  131. envelop.setTotalPage(envelop.getTotalPage());
  132. return envelop;
  133. // pagedResponse(request, response, assistanceApplyService.getCount(filters), page, size);
  134. // return convertToModels(assistanceApplyModelList, new ArrayList<AssistanceApplyModel>(assistanceApplyModelList.size()), AssistanceApplyModel.class, fields);
  135. }
  136. @GetMapping(value = "/apply/detail")
  137. @ApiOperation(value = "下级机构申请详情-查看")
  138. public Envelop applyDetail(
  139. @ApiParam(name = "applyId", value = "申请记录ID")
  140. @RequestParam(value = "applyId", required = false) int applyId) {
  141. AssistanceApplyModel applyModel = assistanceApplyService.findById(applyId);
  142. return success(applyModel);
  143. }
  144. @ApiOperation(value = "检验协助申请", response = AssistanceApplyModel.class,produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
  145. @PostMapping(value = "apply",consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
  146. public Envelop createAssistanceApply(
  147. @ApiParam(name = "apply", value = "档案申请JSON结构",required = true)
  148. @RequestBody(required = true) AssistanceApplyModel apply) {
  149. AssistanceApplyModel save = null;
  150. try {
  151. save = assistanceApplyService.saveOrUpdateApply(apply);
  152. } catch (ManageException e) {
  153. return failed(e.getMessage());
  154. }
  155. return success(save);
  156. }
  157. @ApiOperation(value = "检验申请处理", response = AssistanceApplyModel.class,produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
  158. @PostMapping(value = "apply/solution",consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
  159. public Envelop applySolution (
  160. @ApiParam(name = "applyId", value = "申请记录ID", defaultValue = "")
  161. @RequestParam(value = "applyId", required = false) int applyId,
  162. @ApiParam(name = "replyUserId", value = "处理人ID", defaultValue = "")
  163. @RequestParam(value = "replyUserId", required = false) String replyUserId,
  164. @ApiParam(name = "replyContent", value = "回复内容", defaultValue = "")
  165. @RequestParam(value = "replyContent", required = false) String replyContent) {
  166. AssistanceApplyModel save = null;
  167. try {
  168. save = assistanceApplyService.solutionApply(applyId,replyUserId,replyContent);
  169. } catch (ManageException e) {
  170. return failed(e.getMessage());
  171. }
  172. return success(save);
  173. }
  174. @ApiOperation(value = "检验申请撤回", response = AssistanceApplyModel.class)
  175. @PostMapping(value = "apply/retract",consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
  176. public Envelop applyRetract (
  177. @ApiParam(name = "applyId", value = "申请记录ID", defaultValue = "")
  178. @RequestParam(value = "applyId", required = false) int applyId) {
  179. AssistanceApplyModel save = null;
  180. try {
  181. save = assistanceApplyService.retractApply(applyId,-1);
  182. } catch (ManageException e) {
  183. return failed(e.getMessage());
  184. }
  185. return success(save);
  186. }
  187. }