fix report เพิ่มเตืม

This commit is contained in:
Suphonchai Phoonsawat 2023-09-21 16:58:29 +07:00
parent 5dc7504323
commit 197bd53426
12 changed files with 4 additions and 4 deletions

View file

@ -257,7 +257,7 @@ namespace BMA.EHR.Application.Repositories.Commands
NewPositionLevel = p.PositionLevel == null ? "" : p.PositionLevel.Name,
NewPositionType = p.PositionType == null ? "" : p.PositionType.Name,
NewPositionNumber = p.PositionNumber == null ? "" : p.PositionNumber.Name.ToThaiNumber(),
NewSalary = p.Amount == null ? 0 : p.Amount.Value.ToNumericNoDecimalText().ToThaiNumber(),
NewSalary = p.Amount == null ? "" : p.Amount.Value.ToNumericNoDecimalText().ToThaiNumber(),
AppointDate = p.RecruitDate == null ? "" : p.RecruitDate.Value.ToThaiShortDate2().ToThaiNumber()
})
.ToList();