|
@@ -1465,7 +1465,7 @@ public class SiQueryService {
|
|
|
map.replace("totalScnd", map.get("totalScnd").add(BigDecimal.valueOf(itm.getChargeFee())));
|
|
|
}
|
|
|
String typeKey = itm.getMedChrgitmType();
|
|
|
- if (!typeKey.equals("09") && !typeKey.equals("11")) {
|
|
|
+ if (!"09".equals(typeKey) && !"11".equals(typeKey)) {
|
|
|
map.replace("othSum", map.get("othSum").add(BigDecimal.valueOf(itm.getChargeFee())));
|
|
|
if (itm.getChrgitmLv().equals(ChrgitmLv.SELF_PAY.getCode())) {
|
|
|
map.replace("othThrd", map.get("othThrd").add(BigDecimal.valueOf(itm.getChargeFee())));
|