|
@ -6706,10 +6706,9 @@ public class StatisticsEsService {
|
|
|
List<Map<String, Object>> sortedMaps = new ArrayList<>(mergedMap.values());
|
|
|
|
|
|
for (Map<String, Object> map : sortedMaps) {
|
|
|
double haveReceiveCount = Double.parseDouble(map.get("haveReceiveCount").toString());
|
|
|
double total = Double.parseDouble(map.get("total").toString());
|
|
|
double jzl = (double) haveReceiveCount / total * 100;
|
|
|
map.put("jzl", jzl + "%");//接诊率
|
|
|
int haveReceiveCount = Integer.parseInt(map.get("haveReceiveCount").toString());
|
|
|
int total = Integer.parseInt(map.get("total").toString());
|
|
|
map.put("jzl", getRange(haveReceiveCount, total, 0));//接诊率
|
|
|
}
|
|
|
if ("1".equals(type)) {
|
|
|
//科室
|