Commit 97c52531 authored by fangxinjiang's avatar fangxinjiang

是否BPO结算模式字段同步-fxj

parent 9d5bac05
...@@ -9751,7 +9751,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap ...@@ -9751,7 +9751,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
@Override @Override
public R callBackInsuranceBuyHandleStatus(EkpStatusParamVo vo) { public R callBackInsuranceBuyHandleStatus(EkpStatusParamVo vo) {
try { try {
callBackInsuranceBuyHandleStatus(vo); callBackInsuranceBuyHandleStatusSub(vo);
}catch (Exception e) { }catch (Exception e) {
log.error("商险结算状态更新异常", e); log.error("商险结算状态更新异常", e);
return R.failed("商险结算状态更新异常"); return R.failed("商险结算状态更新异常");
......
...@@ -238,6 +238,7 @@ public class DoJointInsuranceTask { ...@@ -238,6 +238,7 @@ public class DoJointInsuranceTask {
if (Common.isNotNull(viewVo.getId())) { if (Common.isNotNull(viewVo.getId())) {
insuranceId = viewVo.getId().substring(0, 19); insuranceId = viewVo.getId().substring(0, 19);
detail = insuranceDetailMapper.selectById(insuranceId); detail = insuranceDetailMapper.selectById(insuranceId);
log.error("更新状态商险ID:"+detail.getId() +"|"+insuranceId);
if (Common.isNotNull(detail)) { if (Common.isNotNull(detail)) {
//判断订单类型是预估还是实缴 //判断订单类型是预估还是实缴
if (InsurancesConstants.ACTUAL_SETTLE_BILL.equals(viewVo.getOrderType())) { if (InsurancesConstants.ACTUAL_SETTLE_BILL.equals(viewVo.getOrderType())) {
......
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