|
@@ -184,7 +184,11 @@ public class PlanServiceImpl implements PlanService {
|
|
|
callBackBean.setAuditComment("审核通过");
|
|
|
else callBackBean.setAuditComment("审核不通过");
|
|
|
callBackBean.setAuditTime(now);
|
|
|
- SendCallBackUtil.sendCallBack(app.getCallBack(), callBackBean);
|
|
|
+ try {
|
|
|
+ SendCallBackUtil.sendCallBack(app.getCallBack(), callBackBean);
|
|
|
+ } catch (Exception e) {
|
|
|
+ return -2;
|
|
|
+ }
|
|
|
}
|
|
|
return insert;
|
|
|
}
|