|
|
@@ -1308,7 +1308,7 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
Id = x.Id,
|
|
|
FirstName = x.FirstName,
|
|
|
LastName = x.LastName,
|
|
|
- Tel = x.Tel
|
|
|
+ Tel = x.Phone
|
|
|
})
|
|
|
.ToListAsync();
|
|
|
|
|
|
@@ -1332,13 +1332,14 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
{
|
|
|
var idNo = AesEncryptionHelper.Decrypt(clientCertInfos.FirstOrDefault(x => x.DcId == item.Id)?.CertNo ?? "") ?? "-";
|
|
|
|
|
|
+ var phone = AesEncryptionHelper.Decrypt(item.Tel);
|
|
|
if (string.IsNullOrEmpty(idNo)) idNo = "-";
|
|
|
|
|
|
view.Add(new() {
|
|
|
DcId = item.Id,
|
|
|
GrpId = dto.GroupId,
|
|
|
ClientName = item.LastName + item.FirstName,
|
|
|
- Tel = item.Tel ?? "-",
|
|
|
+ Tel = phone ?? "-",
|
|
|
CerdNo = idNo
|
|
|
});
|
|
|
}
|