LV2_015 - รายการขอยกเลิกการลา (ADMIN)
LV2_008 - ขอยกเลิกการลา (USER)
This commit is contained in:
Suphonchai Phoonsawat 2023-12-04 12:10:46 +07:00
parent 1a4d03cdd9
commit 0c2814e53b
13 changed files with 3320 additions and 14 deletions

View file

@ -29,9 +29,9 @@ namespace BMA.EHR.Domain.Models.Leave.Requests
[Required, Comment("รายละเอียดการลา")]
public string LeaveDetail { get; set; } = string.Empty;
public Document LeaveDocument { get; set; }
public Document? LeaveDocument { get; set; }
public Document LeaveDraftDocument { get; set; }
public Document? LeaveDraftDocument { get; set; }
public string LeaveSalaryText { get; set; } = string.Empty;
@ -101,9 +101,14 @@ namespace BMA.EHR.Domain.Models.Leave.Requests
public string CoupleDaySumTotalHistory { get; set; } = string.Empty;
[Required, Comment("สถานะของคำร้อง")]
public string LeaveStatus { get; set; } = string.Empty;
public string LeaveComment { get; set; } = string.Empty;
[Comment("ความเห็นของผู้บังคับบัญชา")]
public string? LeaveComment { get; set; } = string.Empty;
[Comment("ความเห็นของผู้อำนวยการสำนัก")]
public string? LeaveDirectorComment { get; set; } = string.Empty;
public int LeaveTotal { get; set; } = 0;
@ -116,5 +121,14 @@ namespace BMA.EHR.Domain.Models.Leave.Requests
public DateTime? LeaveGovernmentDate { get; set; }
public int? LeaveSalary { get; set; }
[Comment("สถานะของคำขอยกเลิก")]
public string? LeaveCancelStatus { get; set; } = string.Empty;
[Comment("เหตุผลในการขอยกเลิก")]
public string? LeaveCancelComment { get; set; } = string.Empty;
[Comment("เอกสารแนบในการขอยกเลิกการลา")]
public Document? LeaveCancelDocument { get; set; }
}
}