|
@@ -33,9 +33,6 @@ public class ConsoleFacade {
|
|
*/
|
|
*/
|
|
public Map<String, Object> mrStatistics(FilterVO filterVO) {
|
|
public Map<String, Object> mrStatistics(FilterVO filterVO) {
|
|
Map<String, Object> retMap = new LinkedHashMap<>();
|
|
Map<String, Object> retMap = new LinkedHashMap<>();
|
|
- retMap.put("病历数统计", Lists.newLinkedList());
|
|
|
|
- retMap.put("出院人数统计", new LinkedHashMap<>());
|
|
|
|
- retMap.put("各科室甲级病历占比", Lists.newLinkedList());
|
|
|
|
String hospitalId = SysUserUtils.getCurrentHospitalID();
|
|
String hospitalId = SysUserUtils.getCurrentHospitalID();
|
|
String startDate = filterFacade.getStartDateStr(filterVO.getType(), null);
|
|
String startDate = filterFacade.getStartDateStr(filterVO.getType(), null);
|
|
String endDate = filterFacade.getEndDateStr(filterVO.getType(), null);
|
|
String endDate = filterFacade.getEndDateStr(filterVO.getType(), null);
|
|
@@ -61,9 +58,6 @@ public class ConsoleFacade {
|
|
*/
|
|
*/
|
|
public Map<String, Object> resultStatistics(FilterVO filterVO) {
|
|
public Map<String, Object> resultStatistics(FilterVO filterVO) {
|
|
Map<String, Object> retMap = new LinkedHashMap<>();
|
|
Map<String, Object> retMap = new LinkedHashMap<>();
|
|
- retMap.put("各科室缺陷占比", Lists.newLinkedList());
|
|
|
|
- retMap.put("各模块缺陷占比排行", Lists.newLinkedList());
|
|
|
|
- retMap.put("条目缺陷占比", Lists.newLinkedList());
|
|
|
|
String hospitalId = SysUserUtils.getCurrentHospitalID();
|
|
String hospitalId = SysUserUtils.getCurrentHospitalID();
|
|
String startDate = filterFacade.getStartDateStr(filterVO.getType(), null);
|
|
String startDate = filterFacade.getStartDateStr(filterVO.getType(), null);
|
|
filterVO.setStartDate(startDate);
|
|
filterVO.setStartDate(startDate);
|
|
@@ -87,9 +81,6 @@ public class ConsoleFacade {
|
|
*/
|
|
*/
|
|
public Map<String, Object> averageStatistics(FilterVO filterVO) {
|
|
public Map<String, Object> averageStatistics(FilterVO filterVO) {
|
|
Map<String, Object> retMap = new LinkedHashMap<>();
|
|
Map<String, Object> retMap = new LinkedHashMap<>();
|
|
- retMap.put("平均住院日", Lists.newLinkedList());
|
|
|
|
- retMap.put("平均住院费用", Lists.newLinkedList());
|
|
|
|
- retMap.put("各科室质控平均分", Lists.newLinkedList());
|
|
|
|
String hospitalId = SysUserUtils.getCurrentHospitalID();
|
|
String hospitalId = SysUserUtils.getCurrentHospitalID();
|
|
filterVO.setHospitalId(hospitalId);
|
|
filterVO.setHospitalId(hospitalId);
|
|
String startDate = filterFacade.getStartDateStr(filterVO.getType(), null);
|
|
String startDate = filterFacade.getStartDateStr(filterVO.getType(), null);
|