|
|
@@ -784,6 +784,10 @@ public class InsAreaCompanyServiceImpl extends ServiceImpl<InsAreaCompanyMapper,
|
|
|
//审核表数据插入
|
|
|
insFeeAuditService.saveDefaultInsFeeAuditAndHistory(insAreaCompany.getOrderno(), insAreaCompany.getId(), FeeAuditAuditstatus.UNREVICEWED.getCode(), null);
|
|
|
}
|
|
|
+ // add by hxl 2024-12-27 添加外部订单承保数据推送
|
|
|
+ if(InsOrderStatusEnum.ACCEPT_INSURANCE.getCode().equals(insAreaCompany.getOrderstatus())){
|
|
|
+ insOrderPushMsgService.getPushSignInsAreaCompanyList(insAreaCompany.getId());
|
|
|
+ }
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
@@ -1000,6 +1004,10 @@ public class InsAreaCompanyServiceImpl extends ServiceImpl<InsAreaCompanyMapper,
|
|
|
//重新进入审核状态
|
|
|
insFeeAuditService.saveDefaultInsFeeAuditAndHistory(insAreaCompany.getOrderno(), insAreaCompany.getId(), FeeAuditAuditstatus.UNREVICEWED.getCode(), null);
|
|
|
}
|
|
|
+ // add by hxl 2024-12-27 添加外部订单承保数据推送
|
|
|
+ if(InsOrderStatusEnum.ACCEPT_INSURANCE.getCode().equals(insAreaCompany.getOrderstatus())){
|
|
|
+ insOrderPushMsgService.getPushSignInsAreaCompanyList(insAreaCompany.getId());
|
|
|
+ }
|
|
|
return true;
|
|
|
}
|
|
|
|