This commit is contained in:
parent
764a27fbd5
commit
ea34087f11
2 changed files with 20 additions and 3 deletions
|
|
@ -1588,11 +1588,18 @@ namespace BMA.EHR.Application.Repositories.Reports
|
|||
var data = await data_insigniaQuery.Select(x => new
|
||||
{
|
||||
CitizenId = x.CitizenId,
|
||||
Prefix = x.Prefix,
|
||||
FullName = $"{x.Prefix}{x.FirstName} {x.LastName}",
|
||||
PosTypeName = x.PosTypeName,
|
||||
PosLevelName = x.PosLevelName,
|
||||
Position = x.Position,
|
||||
Root = x.Root
|
||||
Root = x.Root,
|
||||
OrganizationOrganizationReceive = x.OrganizationOrganizationReceive,
|
||||
OrganizationOrganizationSend = x.OrganizationOrganizationSend,
|
||||
IsApprove = x.IsApprove == true ? "ได้รับ" : "ไม่ได้รับ",
|
||||
RequestInsignia = x.RequestInsignia.Name,
|
||||
Number = x.Number,
|
||||
DatePayment = x.DatePayment,
|
||||
}).ToListAsync();
|
||||
|
||||
return data;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue