|
@@ -411,6 +411,7 @@ public class ChannelCustomerServiceImpl extends ServiceImpl<ChannelCustomerMappe
|
411
|
411
|
customerSignatory.setOrgId(taRecommendCustomer.getOrgId());
|
412
|
412
|
customerSignatory.setCreateDate(LocalDateTime.now());
|
413
|
413
|
customerSignatory.setType("commission");
|
|
414
|
+ customerSignatory.setCustomerId(params.getCustomerId());
|
414
|
415
|
if (StringUtils.isEmpty(customerSignatory.getCustomerSignatoryId())){
|
415
|
416
|
customerSignatoryMapper.insert(customerSignatory);
|
416
|
417
|
}else {
|
|
@@ -457,6 +458,7 @@ public class ChannelCustomerServiceImpl extends ServiceImpl<ChannelCustomerMappe
|
457
|
458
|
}
|
458
|
459
|
customerSignatory.setOrgId(taRecommendCustomer.getOrgId());
|
459
|
460
|
customerSignatory.setType("signatory");
|
|
461
|
+ customerSignatory.setCustomerId(params.getCustomerId());
|
460
|
462
|
if (StringUtils.isEmpty(customerSignatory.getCustomerSignatoryId())) {
|
461
|
463
|
customerSignatoryMapper.insert(customerSignatory);
|
462
|
464
|
}else {
|