|
@@ -92,9 +92,10 @@ public class MarkMtFeesController {
|
|
|
if (result.getCode() != ExceptionEnum.SUCCESS.getCode()) {
|
|
|
map.put("code", -1);
|
|
|
if (null == result.getMessage()) {
|
|
|
- result.setMessage("医保中心网络异常!");
|
|
|
+ map.put("msg", "医保中心网络异常!");
|
|
|
+ } else {
|
|
|
+ map.put("msg", result.getMessage());
|
|
|
}
|
|
|
- map.put("msg", result.getMessage());
|
|
|
return map;
|
|
|
}
|
|
|
FundDetail fund = result.getData();
|
|
@@ -105,6 +106,7 @@ public class MarkMtFeesController {
|
|
|
payInfo.put("acctPay", fund.getAcctPay());
|
|
|
payInfo.put("selfPay", fund.getSelfPay());
|
|
|
map.put("code", 0);
|
|
|
+ map.put("msg", "成功。");
|
|
|
map.put("payInfo", payInfo);
|
|
|
if (settlement) {
|
|
|
mzService.updateMzSaved(param.getPatientId(), param.getTimes(), 1);
|