Commit e7236d09 by jianan

新单跟进v2

parent 6d8a4f0b
......@@ -772,7 +772,10 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
private void savePolicyBroker(String fnaBizId, String policyBizId) {
log.info("同步保存保单转介人, fnaBizId: {}, policyBizId: {}", fnaBizId, policyBizId);
FnaForm fnaForm = fnaFormService.getByFnaFormBizId(fnaBizId);
FnaForm fnaForm = fnaFormService.lambdaQuery()
.select(FnaForm::getBrokerList)
.apply("fna_form_biz_id = (select fna_form_biz_id from fna where fna_biz_id = '{}')", fnaBizId)
.one();
if (Objects.isNull(fnaForm)) {
return;
}
......
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