แก้ report 03 04 เพิ่ม text ผู้ทดลองงาน

This commit is contained in:
Kittapath 2023-10-10 09:44:50 +07:00
parent 773b7b21f3
commit 39cc6be653
4 changed files with 2 additions and 0 deletions

View file

@ -201,6 +201,7 @@ namespace BMA.EHR.Application.Repositories.Commands
CitizenId = r.CitizenId,
FullName = $"{r.Prefix}{r.FirstName} {r.LastName}",
OldOc = pf.Oc == null ? "" : pf.Oc.Replace("/", " "),
Probation = pf.IsProbation ? "(อยู่ระหว่างปฏิบัติหน้าที่ราชการ)" : "",
OldPositionName = pf.Position == null ? "" : pf.Position.Name,
OldPositionLevel = pf.PositionLevel == null ? "" : pf.PositionLevel.Name,
OldPositionType = pf.PositionType == null ? "" : pf.PositionType.Name,

View file

@ -43,5 +43,6 @@ namespace BMA.EHR.Application.Responses.Reports
public string? OldSalaryDate { get; set; } = string.Empty;
public string? RemarkHorizontal { get; set; } = string.Empty;
public string? RemarkVertical { get; set; } = string.Empty;
public string? Probation { get; set; } = string.Empty;
}
}