This commit is contained in:
parent
2240c383c7
commit
23b6070785
1 changed files with 2 additions and 2 deletions
|
|
@ -1649,9 +1649,9 @@ namespace BMA.EHR.Leave.Service.Controllers
|
|||
fullName = fullName,
|
||||
dutyTimeName = $"{duty.StartTimeMorning} - {duty.EndTimeAfternoon} น.",
|
||||
checkInLocation = p.CheckInPOI,
|
||||
checkInTime = $"{checkIn?.ToString("HH:mm") ?? ""} น.",
|
||||
checkInTime = checkIn?.ToString("HH:mm") is string timeIn ? $"{timeIn} น." : "",
|
||||
checkOutLocation = p.CheckOutPOI ?? "",
|
||||
checkOutTime = $"{checkOut?.ToString("HH:mm") ?? ""} น.",
|
||||
checkOutTime = checkOut?.ToString("HH:mm") is string timeOut ? $"{timeOut} น." : "",
|
||||
remark = "",
|
||||
checkInDate = checkIn?.ToThaiFullDate2()?.ToThaiNumber() ?? "",
|
||||
checkedOutDate = checkOut?.ToThaiFullDate2()?.ToThaiNumber() ?? "",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue