SUPPORT-9122: fixes
This commit is contained in:
parent
fd028c934a
commit
69ae35b5d0
1 changed files with 3 additions and 1 deletions
|
|
@ -50,7 +50,9 @@ public class AccountDataProcessor implements DataProcessor<AccountData> {
|
|||
record.setFio(data.getFio());
|
||||
record.setWorkMail(data.getWorkMail());
|
||||
record.setEsiaAccount(data.isEsiaAccount());
|
||||
record.setDomainId(data.getUserDomain().getId());
|
||||
if (data.getUserDomain() != null) {
|
||||
record.setDomainId(data.getUserDomain().getId());
|
||||
}
|
||||
|
||||
if (existingIds.contains(data.getId())) {
|
||||
accountRecordsToUpdate.add(record);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue