Commit 4b75d846 authored by hongguangwu's avatar hongguangwu

MVP1.7.3-shuiyou 优化商险报错

parent d9c53b3a
......@@ -2364,8 +2364,9 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
* @return {@link String}
*/
private String getBuyType(Integer buyType){
String result;
switch (buyType){
String result = "";
if (Common.isNotNull(buyType)) {
switch (buyType) {
case 1:
result = "新增";
break;
......@@ -2378,6 +2379,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
default:
result = "";
}
}
return result;
}
......@@ -2467,7 +2469,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
ekpUpdateParam.setFd_3b5bf0b7b4c058(sb.toString());
eKPInsuranceUtil.sendUpdateToEkp(ekpUpdateParam);
}catch (Exception e){
log.error("pushEkp error updateInsuranceInsured:",e.getMessage());
log.error("pushEkp error updateInsuranceInsured:", e);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment