SUPPORT-9212: fix

This commit is contained in:
adel.ka 2025-06-17 15:49:36 +03:00
parent e76a65ab1f
commit 27605faccc
3 changed files with 4 additions and 31 deletions

View file

@ -76,7 +76,7 @@ public class AccountGridLoadService extends Behavior implements GridService {
for (Account account : accounts) {
GridRow gridRow = new GridRow();
gridRow.put("row_uid", account.getAccountId() != null ? account.getAccountId() : "");
gridRow.put("row_uid", account.getId() != null ? account.getId() : "");
gridRow.put("enabled", account.isActive());
Person person = account.getPerson();
if (person != null) {