|
@ -1,14 +1,11 @@
|
|
|
package com.yihu.ehr.svrinspection.controller;
|
|
|
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
import com.yihu.ehr.constants.ApiVersion;
|
|
|
import com.yihu.ehr.constants.ServiceApi;
|
|
|
import com.yihu.ehr.controller.BaseController;
|
|
|
import com.yihu.ehr.controller.EnvelopRestEndPoint;
|
|
|
import com.yihu.ehr.model.user.MRoleReportRelation;
|
|
|
import com.yihu.ehr.svrinspection.commons.exception.ManageException;
|
|
|
import com.yihu.ehr.svrinspection.model.AssistanceApplyModel;
|
|
|
import com.yihu.ehr.svrinspection.service.AssistanceApplyService;
|
|
|
import com.yihu.ehr.svrinspection.service.SolrStatisticsService;
|
|
|
import com.yihu.ehr.util.rest.Envelop;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
@ -26,8 +23,6 @@ import java.util.Collection;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
import static com.yihu.ehr.constants.ServiceApi.AppPushMessage.list;
|
|
|
|
|
|
/**
|
|
|
* 机构检验申请控制类
|
|
|
*
|
|
@ -43,15 +38,18 @@ public class AssistanceApplyController extends EnvelopRestEndPoint {
|
|
|
private ObjectMapper objectMapper;
|
|
|
@Autowired
|
|
|
private AssistanceApplyService assistanceApplyService;
|
|
|
@Autowired
|
|
|
private SolrStatisticsService solrStatisticsService;
|
|
|
|
|
|
@GetMapping(value = "/area")
|
|
|
@ApiOperation(value = "区域检验-【区域排行】")
|
|
|
public Envelop examAreaRanking(
|
|
|
@ApiParam(name = "eventDate", value = "就诊时间(年月)", defaultValue = "")
|
|
|
@RequestParam(value = "eventDate", required = false) String eventDate) throws IOException {
|
|
|
@ApiParam(name = "pid", value = "上级区域编码", defaultValue = "361100")
|
|
|
@RequestParam(value = "pid", required = false,defaultValue = "361100") Integer pid,
|
|
|
@ApiParam(name = "eventDate", value = "就诊时间(年月)",required = true, defaultValue = "")
|
|
|
@RequestParam(value = "eventDate", required = false) String eventDate) throws Exception {
|
|
|
|
|
|
String demoData = "[{\"areaCode\":\"test\",\"areaName\":\"测试区域\",\"count\":100},{\"areaCode\":\"test2\",\"areaName\":\"测试区域2\",\"count\":100}]";
|
|
|
List list = objectMapper.readValue(demoData,List.class);
|
|
|
List<Map<String,Object>> list = solrStatisticsService.areaGroupCount(pid,"org_area",eventDate);
|
|
|
return success(list);
|
|
|
}
|
|
|
|
|
@ -61,15 +59,19 @@ public class AssistanceApplyController extends EnvelopRestEndPoint {
|
|
|
@ApiParam(name = "areaCode", value = "区域编码", defaultValue = "")
|
|
|
@RequestParam(value = "areaCode", required = false) String areaCode,
|
|
|
@ApiParam(name = "eventDate", value = "就诊时间(年月)", defaultValue = "")
|
|
|
@RequestParam(value = "eventDate", required = false) String eventDate) throws IOException {
|
|
|
|
|
|
String demoData = "[{\"orgCode\":\"test1\",\"orgName\":\"测试机构1\",\"count\":100},{\"orgCode\":\"test2\",\"orgName\":\"测试机构2\",\"count\":100}]";
|
|
|
List list = objectMapper.readValue(demoData,List.class);
|
|
|
@RequestParam(value = "eventDate", required = false) String eventDate) {
|
|
|
|
|
|
List<Map<String,Object>> list = null;
|
|
|
try {
|
|
|
list = solrStatisticsService.hospitalGroupCount(areaCode,"org_code",eventDate);
|
|
|
} catch (Exception e) {
|
|
|
failed(e.getMessage());
|
|
|
}
|
|
|
return success(list);
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = "/statistics")
|
|
|
@ApiOperation(value = "区域检验-【统计信息】")
|
|
|
@ApiOperation(value = "区域检验数-【统计信息】",notes = "包含今日新增量,检验次数业务分布【医生端,市政端共用】")
|
|
|
public Envelop statistics(
|
|
|
@ApiParam(name = "orgCode", value = "机构编码(不传默认全市)", defaultValue = "")
|
|
|
@RequestParam(value = "orgCode", required = false) String orgCode,
|
|
@ -118,7 +120,7 @@ public class AssistanceApplyController extends EnvelopRestEndPoint {
|
|
|
@ApiOperation(value = "下级机构申请详情-查看")
|
|
|
public Envelop applyDetail(
|
|
|
@ApiParam(name = "applyId", value = "申请记录ID")
|
|
|
@RequestParam(value = "applyId", required = false) int applyId) throws IOException {
|
|
|
@RequestParam(value = "applyId", required = false) int applyId) {
|
|
|
|
|
|
AssistanceApplyModel applyModel = assistanceApplyService.findById(applyId);
|
|
|
return success(applyModel);
|
|
@ -129,7 +131,7 @@ public class AssistanceApplyController extends EnvelopRestEndPoint {
|
|
|
@PostMapping(value = "apply",consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
public Envelop createAssistanceApply(
|
|
|
@ApiParam(name = "dictionary", value = "档案申请JSON结构")
|
|
|
@RequestBody AssistanceApplyModel apply) throws IOException {
|
|
|
@RequestBody AssistanceApplyModel apply) {
|
|
|
|
|
|
AssistanceApplyModel save = assistanceApplyService.save(apply);
|
|
|
return success(save);
|
|
@ -143,10 +145,17 @@ public class AssistanceApplyController extends EnvelopRestEndPoint {
|
|
|
@ApiParam(name = "replyUserId", value = "处理人ID", defaultValue = "")
|
|
|
@RequestParam(value = "replyUserId", required = false) String replyUserId,
|
|
|
@ApiParam(name = "replyContent", value = "回复内容", defaultValue = "")
|
|
|
@RequestParam(value = "replyContent", required = false) String replyContent) throws ManageException {
|
|
|
|
|
|
AssistanceApplyModel save = assistanceApplyService.solutionApply(applyId,replyUserId,replyContent);
|
|
|
@RequestParam(value = "replyContent", required = false) String replyContent) {
|
|
|
|
|
|
AssistanceApplyModel save = null;
|
|
|
try {
|
|
|
save = assistanceApplyService.solutionApply(applyId,replyUserId,replyContent);
|
|
|
} catch (ManageException e) {
|
|
|
return failed(e.getMessage());
|
|
|
}
|
|
|
return success(save);
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|