diff --git a/BMA.EHR.Domain/Models/Leave/Requests/LeaveRequest.cs b/BMA.EHR.Domain/Models/Leave/Requests/LeaveRequest.cs
index 32042461..52ce07c8 100644
--- a/BMA.EHR.Domain/Models/Leave/Requests/LeaveRequest.cs
+++ b/BMA.EHR.Domain/Models/Leave/Requests/LeaveRequest.cs
@@ -135,6 +135,9 @@ namespace BMA.EHR.Domain.Models.Leave.Requests
public string? ApproveStep { get; set; } = string.Empty;
[Comment("เขียนที่ (ขอยกเลิก)")]
- public string? CancelLeaveWrote { get; set; } = string.Empty;
+ public string? CancelLeaveWrote { get; set; } = string.Empty;
+
+ [Comment("ช่วงของการลา เช่น ลาทั้งวัน ครึ่งวันเช้า ครึ่งวันบ่าย")]
+ public string? LeaveRange { get; set; } = string.Empty;
}
}
diff --git a/BMA.EHR.Infrastructure/Migrations/LeaveDb/20231221041338_Add LeaveRange to LeaveRequest.Designer.cs b/BMA.EHR.Infrastructure/Migrations/LeaveDb/20231221041338_Add LeaveRange to LeaveRequest.Designer.cs
new file mode 100644
index 00000000..b250dd82
--- /dev/null
+++ b/BMA.EHR.Infrastructure/Migrations/LeaveDb/20231221041338_Add LeaveRange to LeaveRequest.Designer.cs
@@ -0,0 +1,960 @@
+//
+using System;
+using BMA.EHR.Infrastructure.Persistence;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+
+#nullable disable
+
+namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
+{
+ [DbContext(typeof(LeaveDbContext))]
+ [Migration("20231221041338_Add LeaveRange to LeaveRequest")]
+ partial class AddLeaveRangetoLeaveRequest
+ {
+ ///
+ protected override void BuildTargetModel(ModelBuilder modelBuilder)
+ {
+#pragma warning disable 612, 618
+ modelBuilder
+ .HasAnnotation("ProductVersion", "7.0.9")
+ .HasAnnotation("Relational:MaxIdentifierLength", 64);
+
+ modelBuilder.Entity("BMA.EHR.Domain.Models.Documents.Document", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("char(36)");
+
+ b.Property("CreatedDate")
+ .HasColumnType("datetime(6)");
+
+ b.Property("Detail")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.Property("FileName")
+ .IsRequired()
+ .HasMaxLength(255)
+ .HasColumnType("varchar(255)");
+
+ b.Property("FileSize")
+ .HasColumnType("int");
+
+ b.Property("FileType")
+ .IsRequired()
+ .HasMaxLength(128)
+ .HasColumnType("varchar(128)");
+
+ b.Property("ObjectRefId")
+ .HasColumnType("char(36)");
+
+ b.HasKey("Id");
+
+ b.ToTable("Document");
+ });
+
+ modelBuilder.Entity("BMA.EHR.Domain.Models.Leave.Commons.LeaveType", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("char(36)")
+ .HasColumnOrder(0)
+ .HasComment("PrimaryKey")
+ .HasAnnotation("Relational:JsonPropertyName", "id");
+
+ b.Property("Code")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("รหัสประเภทการลา");
+
+ b.Property("CreatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(100)
+ .HasComment("สร้างข้อมูลเมื่อ");
+
+ b.Property("CreatedFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(104)
+ .HasComment("ชื่อ User ที่สร้างข้อมูล");
+
+ b.Property("CreatedUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(101)
+ .HasComment("User Id ที่สร้างข้อมูล");
+
+ b.Property("LastUpdateFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(105)
+ .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdateUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(103)
+ .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(102)
+ .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
+
+ b.Property("Limit")
+ .HasColumnType("int")
+ .HasComment("จำนวนวันลาสูงสุดประจำปี");
+
+ b.Property("Name")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("ชื่อประเภทการลา");
+
+ b.HasKey("Id");
+
+ b.ToTable("LeaveTypes");
+ });
+
+ modelBuilder.Entity("BMA.EHR.Domain.Models.Leave.Requests.LeaveRequest", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("char(36)")
+ .HasColumnOrder(0)
+ .HasComment("PrimaryKey")
+ .HasAnnotation("Relational:JsonPropertyName", "id");
+
+ b.Property("AbsentDayAt")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("AbsentDayGetIn")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("AbsentDayLocation")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("AbsentDayRegistorDate")
+ .HasColumnType("datetime(6)");
+
+ b.Property("AbsentDaySummon")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("ApproveStep")
+ .HasColumnType("longtext")
+ .HasComment("step การอนุมัติ st1 = จทน.อนุมัตื,st2 = ผู้บังคับบัญชา อนุมัติ ");
+
+ b.Property("CancelLeaveWrote")
+ .HasColumnType("longtext")
+ .HasComment("เขียนที่ (ขอยกเลิก)");
+
+ b.Property("CoupleDayCountryHistory")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("CoupleDayEndDateHistory")
+ .HasColumnType("datetime(6)");
+
+ b.Property("CoupleDayLevel")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("CoupleDayLevelCountry")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("CoupleDayName")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("CoupleDayPosition")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("CoupleDayStartDateHistory")
+ .HasColumnType("datetime(6)");
+
+ b.Property("CoupleDaySumTotalHistory")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("CoupleDayTotalHistory")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("CreatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(100)
+ .HasComment("สร้างข้อมูลเมื่อ");
+
+ b.Property("CreatedFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(104)
+ .HasComment("ชื่อ User ที่สร้างข้อมูล");
+
+ b.Property("CreatedUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(101)
+ .HasComment("User Id ที่สร้างข้อมูล");
+
+ b.Property("HajjDayStatus")
+ .HasColumnType("tinyint(1)");
+
+ b.Property("KeycloakUserId")
+ .HasColumnType("char(36)");
+
+ b.Property("LastUpdateFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(105)
+ .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdateUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(103)
+ .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(102)
+ .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
+
+ b.Property("LeaveAddress")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("สถานที่ติดต่อขณะลา");
+
+ b.Property("LeaveBirthDate")
+ .HasColumnType("datetime(6)");
+
+ b.Property("LeaveCancelComment")
+ .HasColumnType("longtext")
+ .HasComment("เหตุผลในการขอยกเลิก");
+
+ b.Property("LeaveCancelDocumentId")
+ .HasColumnType("char(36)");
+
+ b.Property("LeaveCancelStatus")
+ .HasColumnType("longtext")
+ .HasComment("สถานะของคำขอยกเลิก");
+
+ b.Property("LeaveComment")
+ .HasColumnType("longtext")
+ .HasComment("ความเห็นของผู้บังคับบัญชา");
+
+ b.Property("LeaveDetail")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("รายละเอียดการลา");
+
+ b.Property("LeaveDirectorComment")
+ .HasColumnType("longtext")
+ .HasComment("ความเห็นของผู้อำนวยการสำนัก");
+
+ b.Property("LeaveDocumentId")
+ .HasColumnType("char(36)");
+
+ b.Property("LeaveDraftDocumentId")
+ .HasColumnType("char(36)");
+
+ b.Property("LeaveEndDate")
+ .HasColumnType("datetime(6)")
+ .HasComment("วัน เดือน ปีสิ้นสุดลา");
+
+ b.Property("LeaveGovernmentDate")
+ .HasColumnType("datetime(6)");
+
+ b.Property("LeaveLast")
+ .HasColumnType("datetime(6)");
+
+ b.Property("LeaveNumber")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("หมายเลขที่ติดต่อขณะลา");
+
+ b.Property("LeaveRange")
+ .HasColumnType("longtext")
+ .HasComment("ช่วงของการลา เช่น ลาทั้งวัน ครึ่งวันเช้า ครึ่งวันบ่าย");
+
+ b.Property("LeaveSalary")
+ .HasColumnType("int");
+
+ b.Property("LeaveSalaryText")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("LeaveStartDate")
+ .HasColumnType("datetime(6)")
+ .HasComment("วัน เดือน ปีเริ่มต้นลา");
+
+ b.Property("LeaveStatus")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("สถานะของคำร้อง");
+
+ b.Property("LeaveTotal")
+ .HasColumnType("int");
+
+ b.Property("LeaveWrote")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("เขียนที่");
+
+ b.Property("OrdainDayBuddhistLentAddress")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("OrdainDayBuddhistLentName")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("OrdainDayLocationAddress")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("OrdainDayLocationName")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("OrdainDayLocationNumber")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("OrdainDayOrdination")
+ .HasColumnType("datetime(6)");
+
+ b.Property("OrdainDayStatus")
+ .HasColumnType("tinyint(1)");
+
+ b.Property("RestDayCurrentTotal")
+ .HasColumnType("int");
+
+ b.Property("RestDayOldTotal")
+ .HasColumnType("int");
+
+ b.Property("StudyDayCountry")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("StudyDayDegreeLevel")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("StudyDayScholarship")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("StudyDaySubject")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("StudyDayTrainingName")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("StudyDayTrainingSubject")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("StudyDayUniversityName")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("TypeId")
+ .HasColumnType("char(36)");
+
+ b.Property("WifeDayDateBorn")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.Property("WifeDayName")
+ .IsRequired()
+ .HasColumnType("longtext");
+
+ b.HasKey("Id");
+
+ b.HasIndex("LeaveCancelDocumentId");
+
+ b.HasIndex("LeaveDocumentId");
+
+ b.HasIndex("LeaveDraftDocumentId");
+
+ b.HasIndex("TypeId");
+
+ b.ToTable("LeaveRequests");
+ });
+
+ modelBuilder.Entity("BMA.EHR.Domain.Models.Leave.TimeAttendants.AdditionalCheckRequest", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("char(36)")
+ .HasColumnOrder(0)
+ .HasComment("PrimaryKey")
+ .HasAnnotation("Relational:JsonPropertyName", "id");
+
+ b.Property("CheckDate")
+ .HasColumnType("datetime(6)")
+ .HasComment("*วันที่ลงเวลา");
+
+ b.Property("CheckInEdit")
+ .HasColumnType("tinyint(1)")
+ .HasComment("*ขอลงเวลาช่วงเช้า");
+
+ b.Property("CheckOutEdit")
+ .HasColumnType("tinyint(1)")
+ .HasComment("*ขอลงเวลาช่วงบ่าย");
+
+ b.Property("Comment")
+ .HasColumnType("longtext")
+ .HasComment("หมายเหตุในการการอนุมัติ/ไม่อนุมัติ");
+
+ b.Property("CreatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(100)
+ .HasComment("สร้างข้อมูลเมื่อ");
+
+ b.Property("CreatedFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(104)
+ .HasComment("ชื่อ User ที่สร้างข้อมูล");
+
+ b.Property("CreatedUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(101)
+ .HasComment("User Id ที่สร้างข้อมูล");
+
+ b.Property("Description")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("*หมายเหตุขอลงเวลาพิเศษ");
+
+ b.Property("KeycloakUserId")
+ .HasColumnType("char(36)")
+ .HasComment("รหัส User ของ Keycloak ที่ร้องขอ");
+
+ b.Property("LastUpdateFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(105)
+ .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdateUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(103)
+ .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(102)
+ .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
+
+ b.Property("Status")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("สถานะการอนุมัติ");
+
+ b.HasKey("Id");
+
+ b.ToTable("AdditionalCheckRequests");
+ });
+
+ modelBuilder.Entity("BMA.EHR.Domain.Models.Leave.TimeAttendants.DutyTime", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("char(36)")
+ .HasColumnOrder(0)
+ .HasComment("PrimaryKey")
+ .HasAnnotation("Relational:JsonPropertyName", "id");
+
+ b.Property("CreatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(100)
+ .HasComment("สร้างข้อมูลเมื่อ");
+
+ b.Property("CreatedFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(104)
+ .HasComment("ชื่อ User ที่สร้างข้อมูล");
+
+ b.Property("CreatedUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(101)
+ .HasComment("User Id ที่สร้างข้อมูล");
+
+ b.Property("Description")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("คำอธิบาย");
+
+ b.Property("EndTimeAfternoon")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("เวลาออกงานช่วงบ่าย");
+
+ b.Property("EndTimeMorning")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("เวลาออกงานช่วงเช้า");
+
+ b.Property("IsActive")
+ .HasColumnType("tinyint(1)")
+ .HasComment("สถานะการเปิดใช้งาน (เปิด/ปิด)");
+
+ b.Property("IsDefault")
+ .HasColumnType("tinyint(1)")
+ .HasComment("สถานะว่ารอบใดเป็นค่า Default ของข้าราชการ (สำหรับทุกคนที่ยังไม่ได้ทำการเลือกรอบ)");
+
+ b.Property("LastUpdateFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(105)
+ .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdateUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(103)
+ .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(102)
+ .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
+
+ b.Property("StartTimeAfternoon")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("เวลาเข้างานช่วงบ่าย");
+
+ b.Property("StartTimeMorning")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("เวลาเข้างานช่วงเช้า");
+
+ b.HasKey("Id");
+
+ b.ToTable("DutyTimes");
+ });
+
+ modelBuilder.Entity("BMA.EHR.Domain.Models.Leave.TimeAttendants.ProcessUserTimeStamp", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("char(36)")
+ .HasColumnOrder(0)
+ .HasComment("PrimaryKey")
+ .HasAnnotation("Relational:JsonPropertyName", "id");
+
+ b.Property("CheckIn")
+ .HasColumnType("datetime(6)")
+ .HasComment("วัน เวลา เข้างาน");
+
+ b.Property("CheckInImageUrl")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("รูปถ่ายสถานที่ Check-In");
+
+ b.Property("CheckInLat")
+ .HasColumnType("double")
+ .HasComment("พิกัดละติจูด Check-In");
+
+ b.Property("CheckInLocationName")
+ .HasColumnType("longtext")
+ .HasComment("กรณีเลือกนอกสถานที่ตั้ง ต้องระบุข้อมูลชื่อสถานะที่ Check-In");
+
+ b.Property("CheckInLon")
+ .HasColumnType("double")
+ .HasComment("พิกัดลองจิจูด Check-In");
+
+ b.Property("CheckInPOI")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("ชื่อสถานที่ ได้มาจากระบบ ArcGis ของกองสารสนเทศภูมิศาสตร์ Check-In");
+
+ b.Property("CheckInRemark")
+ .HasColumnType("longtext")
+ .HasComment("ข้อความหมายเหตุที่ต้องการระบุเพิ่ม(มีเผื่อไว้อาจไม่ได้ใช้) Check-In");
+
+ b.Property("CheckInStatus")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("สถานะ Check-In");
+
+ b.Property("CheckOut")
+ .HasColumnType("datetime(6)")
+ .HasComment("วัน เวลา ออกงาน");
+
+ b.Property("CheckOutImageUrl")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("รูปถ่ายสถานที่ Check-Out");
+
+ b.Property("CheckOutLat")
+ .HasColumnType("double")
+ .HasComment("พิกัดละติจูด Check-Out");
+
+ b.Property("CheckOutLocationName")
+ .HasColumnType("longtext")
+ .HasComment("กรณีเลือกนอกสถานที่ตั้ง ต้องระบุข้อมูลชื่อสถานะที่ Check-Out");
+
+ b.Property("CheckOutLon")
+ .HasColumnType("double")
+ .HasComment("พิกัดลองจิจูด Check-Out");
+
+ b.Property("CheckOutPOI")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("ชื่อสถานที่ ได้มาจากระบบ ArcGis ของกองสารสนเทศภูมิศาสตร์ Check-Out");
+
+ b.Property("CheckOutRemark")
+ .HasColumnType("longtext")
+ .HasComment("ข้อความหมายเหตุที่ต้องการระบุเพิ่ม(มีเผื่อไว้อาจไม่ได้ใช้) Check-Out");
+
+ b.Property("CheckOutStatus")
+ .HasColumnType("longtext")
+ .HasComment("สถานะ Check-Out");
+
+ b.Property("CreatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(100)
+ .HasComment("สร้างข้อมูลเมื่อ");
+
+ b.Property("CreatedFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(104)
+ .HasComment("ชื่อ User ที่สร้างข้อมูล");
+
+ b.Property("CreatedUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(101)
+ .HasComment("User Id ที่สร้างข้อมูล");
+
+ b.Property("EditReason")
+ .HasColumnType("longtext")
+ .HasComment("เหตุผลการอนุมัติ/ไม่อนุมัติขอลงเวลาพิเศษ");
+
+ b.Property("EditStatus")
+ .HasColumnType("longtext")
+ .HasComment("สถานะการของลงเวลาพิเศษ");
+
+ b.Property("IsLocationCheckIn")
+ .HasColumnType("tinyint(1)")
+ .HasComment("true คือ ณ สถานที่ตั้ง, false คือ นอกสถานที่ตั้ง Check-In");
+
+ b.Property("IsLocationCheckOut")
+ .HasColumnType("tinyint(1)")
+ .HasComment("true คือ ณ สถานที่ตั้ง, false คือ นอกสถานที่ตั้ง Check-Out");
+
+ b.Property("IsProcess")
+ .HasColumnType("tinyint(1)")
+ .HasComment("นำไปประมวลผลแล้วหรือยัง");
+
+ b.Property("KeycloakUserId")
+ .HasColumnType("char(36)")
+ .HasComment("รหัส User ของ Keycloak");
+
+ b.Property("LastUpdateFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(105)
+ .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdateUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(103)
+ .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(102)
+ .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
+
+ b.HasKey("Id");
+
+ b.ToTable("ProcessUserTimeStamps");
+ });
+
+ modelBuilder.Entity("BMA.EHR.Domain.Models.Leave.TimeAttendants.UserDutyTime", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("char(36)")
+ .HasColumnOrder(0)
+ .HasComment("PrimaryKey")
+ .HasAnnotation("Relational:JsonPropertyName", "id");
+
+ b.Property("CreatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(100)
+ .HasComment("สร้างข้อมูลเมื่อ");
+
+ b.Property("CreatedFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(104)
+ .HasComment("ชื่อ User ที่สร้างข้อมูล");
+
+ b.Property("CreatedUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(101)
+ .HasComment("User Id ที่สร้างข้อมูล");
+
+ b.Property("DutyTimeId")
+ .HasColumnType("char(36)")
+ .HasComment("รหัสรอบการลงเวลา");
+
+ b.Property("EffectiveDate")
+ .HasColumnType("datetime(6)")
+ .HasComment("วันที่มีผล");
+
+ b.Property("IsProcess")
+ .HasColumnType("tinyint(1)")
+ .HasComment("ทำการประมวลผลแล้วหรือยัง");
+
+ b.Property("LastUpdateFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(105)
+ .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdateUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(103)
+ .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(102)
+ .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
+
+ b.Property("ProfileId")
+ .HasColumnType("char(36)")
+ .HasComment("รหัส Profile ในระบบทะเบียนประวัติ");
+
+ b.Property("Remark")
+ .HasColumnType("longtext")
+ .HasComment("หมายเหตุ");
+
+ b.HasKey("Id");
+
+ b.HasIndex("DutyTimeId");
+
+ b.ToTable("UserDutyTimes");
+ });
+
+ modelBuilder.Entity("BMA.EHR.Domain.Models.Leave.TimeAttendants.UserTimeStamp", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("char(36)")
+ .HasColumnOrder(0)
+ .HasComment("PrimaryKey")
+ .HasAnnotation("Relational:JsonPropertyName", "id");
+
+ b.Property("CheckIn")
+ .HasColumnType("datetime(6)")
+ .HasComment("วัน เวลา เข้างาน");
+
+ b.Property("CheckInImageUrl")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("รูปถ่ายสถานที่ Check-In");
+
+ b.Property("CheckInLat")
+ .HasColumnType("double")
+ .HasComment("พิกัดละติจูด Check-In");
+
+ b.Property("CheckInLocationName")
+ .HasColumnType("longtext")
+ .HasComment("กรณีเลือกนอกสถานที่ตั้ง ต้องระบุข้อมูลชื่อสถานะที่ Check-In");
+
+ b.Property("CheckInLon")
+ .HasColumnType("double")
+ .HasComment("พิกัดลองจิจูด Check-In");
+
+ b.Property("CheckInPOI")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("ชื่อสถานที่ ได้มาจากระบบ ArcGis ของกองสารสนเทศภูมิศาสตร์ Check-In");
+
+ b.Property("CheckInRemark")
+ .HasColumnType("longtext")
+ .HasComment("ข้อความหมายเหตุที่ต้องการระบุเพิ่ม(มีเผื่อไว้อาจไม่ได้ใช้) Check-In");
+
+ b.Property("CheckOut")
+ .HasColumnType("datetime(6)")
+ .HasComment("วัน เวลา ออกงาน");
+
+ b.Property("CheckOutImageUrl")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("รูปถ่ายสถานที่ Check-Out");
+
+ b.Property("CheckOutLat")
+ .HasColumnType("double")
+ .HasComment("พิกัดละติจูด Check-Out");
+
+ b.Property("CheckOutLocationName")
+ .HasColumnType("longtext")
+ .HasComment("กรณีเลือกนอกสถานที่ตั้ง ต้องระบุข้อมูลชื่อสถานะที่ Check-Out");
+
+ b.Property("CheckOutLon")
+ .HasColumnType("double")
+ .HasComment("พิกัดลองจิจูด Check-Out");
+
+ b.Property("CheckOutPOI")
+ .IsRequired()
+ .HasColumnType("longtext")
+ .HasComment("ชื่อสถานที่ ได้มาจากระบบ ArcGis ของกองสารสนเทศภูมิศาสตร์ Check-Out");
+
+ b.Property("CheckOutRemark")
+ .HasColumnType("longtext")
+ .HasComment("ข้อความหมายเหตุที่ต้องการระบุเพิ่ม(มีเผื่อไว้อาจไม่ได้ใช้) Check-Out");
+
+ b.Property("CreatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(100)
+ .HasComment("สร้างข้อมูลเมื่อ");
+
+ b.Property("CreatedFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(104)
+ .HasComment("ชื่อ User ที่สร้างข้อมูล");
+
+ b.Property("CreatedUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(101)
+ .HasComment("User Id ที่สร้างข้อมูล");
+
+ b.Property("IsLocationCheckIn")
+ .HasColumnType("tinyint(1)")
+ .HasComment("true คือ ณ สถานที่ตั้ง, false คือ นอกสถานที่ตั้ง Check-In");
+
+ b.Property("IsLocationCheckOut")
+ .HasColumnType("tinyint(1)")
+ .HasComment("true คือ ณ สถานที่ตั้ง, false คือ นอกสถานที่ตั้ง Check-Out");
+
+ b.Property("IsProcess")
+ .HasColumnType("tinyint(1)")
+ .HasComment("นำไปประมวลผลแล้วหรือยัง");
+
+ b.Property("KeycloakUserId")
+ .HasColumnType("char(36)")
+ .HasComment("รหัส User ของ Keycloak");
+
+ b.Property("LastUpdateFullName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("varchar(200)")
+ .HasColumnOrder(105)
+ .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdateUserId")
+ .IsRequired()
+ .HasMaxLength(40)
+ .HasColumnType("varchar(40)")
+ .HasColumnOrder(103)
+ .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด");
+
+ b.Property("LastUpdatedAt")
+ .HasColumnType("datetime(6)")
+ .HasColumnOrder(102)
+ .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
+
+ b.HasKey("Id");
+
+ b.ToTable("UserTimeStamps");
+ });
+
+ modelBuilder.Entity("BMA.EHR.Domain.Models.Leave.Requests.LeaveRequest", b =>
+ {
+ b.HasOne("BMA.EHR.Domain.Models.Documents.Document", "LeaveCancelDocument")
+ .WithMany()
+ .HasForeignKey("LeaveCancelDocumentId");
+
+ b.HasOne("BMA.EHR.Domain.Models.Documents.Document", "LeaveDocument")
+ .WithMany()
+ .HasForeignKey("LeaveDocumentId");
+
+ b.HasOne("BMA.EHR.Domain.Models.Documents.Document", "LeaveDraftDocument")
+ .WithMany()
+ .HasForeignKey("LeaveDraftDocumentId");
+
+ b.HasOne("BMA.EHR.Domain.Models.Leave.Commons.LeaveType", "Type")
+ .WithMany()
+ .HasForeignKey("TypeId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("LeaveCancelDocument");
+
+ b.Navigation("LeaveDocument");
+
+ b.Navigation("LeaveDraftDocument");
+
+ b.Navigation("Type");
+ });
+
+ modelBuilder.Entity("BMA.EHR.Domain.Models.Leave.TimeAttendants.UserDutyTime", b =>
+ {
+ b.HasOne("BMA.EHR.Domain.Models.Leave.TimeAttendants.DutyTime", "DutyTime")
+ .WithMany()
+ .HasForeignKey("DutyTimeId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("DutyTime");
+ });
+#pragma warning restore 612, 618
+ }
+ }
+}
diff --git a/BMA.EHR.Infrastructure/Migrations/LeaveDb/20231221041338_Add LeaveRange to LeaveRequest.cs b/BMA.EHR.Infrastructure/Migrations/LeaveDb/20231221041338_Add LeaveRange to LeaveRequest.cs
new file mode 100644
index 00000000..73c473fb
--- /dev/null
+++ b/BMA.EHR.Infrastructure/Migrations/LeaveDb/20231221041338_Add LeaveRange to LeaveRequest.cs
@@ -0,0 +1,30 @@
+using Microsoft.EntityFrameworkCore.Migrations;
+
+#nullable disable
+
+namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
+{
+ ///
+ public partial class AddLeaveRangetoLeaveRequest : Migration
+ {
+ ///
+ protected override void Up(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.AddColumn(
+ name: "LeaveRange",
+ table: "LeaveRequests",
+ type: "longtext",
+ nullable: true,
+ comment: "ช่วงของการลา เช่น ลาทั้งวัน ครึ่งวันเช้า ครึ่งวันบ่าย")
+ .Annotation("MySql:CharSet", "utf8mb4");
+ }
+
+ ///
+ protected override void Down(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.DropColumn(
+ name: "LeaveRange",
+ table: "LeaveRequests");
+ }
+ }
+}
diff --git a/BMA.EHR.Infrastructure/Migrations/LeaveDb/LeaveDbContextModelSnapshot.cs b/BMA.EHR.Infrastructure/Migrations/LeaveDb/LeaveDbContextModelSnapshot.cs
index cfb53be4..ebe5ccfc 100644
--- a/BMA.EHR.Infrastructure/Migrations/LeaveDb/LeaveDbContextModelSnapshot.cs
+++ b/BMA.EHR.Infrastructure/Migrations/LeaveDb/LeaveDbContextModelSnapshot.cs
@@ -286,6 +286,10 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
.HasColumnType("longtext")
.HasComment("หมายเลขที่ติดต่อขณะลา");
+ b.Property("LeaveRange")
+ .HasColumnType("longtext")
+ .HasComment("ช่วงของการลา เช่น ลาทั้งวัน ครึ่งวันเช้า ครึ่งวันบ่าย");
+
b.Property("LeaveSalary")
.HasColumnType("int");
diff --git a/BMA.EHR.Leave.Service/Controllers/LeaveReportController.cs b/BMA.EHR.Leave.Service/Controllers/LeaveReportController.cs
index e3912d1e..a5500046 100644
--- a/BMA.EHR.Leave.Service/Controllers/LeaveReportController.cs
+++ b/BMA.EHR.Leave.Service/Controllers/LeaveReportController.cs
@@ -642,6 +642,15 @@ namespace BMA.EHR.Leave.Service.Controllers
var fullName = $"{profile!.Prefix!.Name}{profile!.FirstName} {profile!.LastName}";
+ var rootOc = _userProfileRepository.GetRootOcId(profile.OcId ?? Guid.Empty);
+ var approver = string.Empty;
+ if (rootOc != null)
+ {
+ var list = await _commandRepository.GetOrgApproverAsync(rootOc ?? Guid.Empty);
+ if (list.Count > 0)
+ approver = list.First().Name;
+ }
+
var result = new
{
template = "แบบใบขอยกเลิกวันลา",
@@ -656,7 +665,9 @@ namespace BMA.EHR.Leave.Service.Controllers
positionLeaveName = profile!.Position == null ? "-" : profile!.Position!.Name,
organizationName = profile!.Oc ?? "",
leaveDateStart = data.LeaveStartDate.Date.ToThaiShortDate(),
- leaveDateEnd = data.LeaveEndDate.Date.ToThaiShortDate()
+ leaveDateEnd = data.LeaveEndDate.Date.ToThaiShortDate(),
+ dear = approver,
+ leaveTotal = data.LeaveTotal
}
};
diff --git a/BMA.EHR.Leave.Service/Controllers/LeaveRequestController.cs b/BMA.EHR.Leave.Service/Controllers/LeaveRequestController.cs
index b1fb31be..347eae25 100644
--- a/BMA.EHR.Leave.Service/Controllers/LeaveRequestController.cs
+++ b/BMA.EHR.Leave.Service/Controllers/LeaveRequestController.cs
@@ -127,6 +127,7 @@ namespace BMA.EHR.Leave.Service.Controllers
var leaveRequest = new LeaveRequest
{
Type = leaveType,
+ LeaveRange = req.LeaveRange,
LeaveStartDate = req.LeaveStartDate,
LeaveEndDate = req.LeaveEndDate,
LeaveWrote = req.LeaveWrote ?? "",
@@ -506,6 +507,7 @@ namespace BMA.EHR.Leave.Service.Controllers
var result = new GetLeaveRequestByIdDto
{
Id = rawData.Id,
+ LeaveRange = rawData.LeaveRange ?? "",
LeaveTypeName = rawData.Type.Name,
LeaveTypeId = rawData.Type.Id,
FullName = $"{profile.Prefix.Name}{profile.FirstName} {profile.LastName}",
diff --git a/BMA.EHR.Leave.Service/DTOs/LeaveRequest/CreateLeaveRequestDto.cs b/BMA.EHR.Leave.Service/DTOs/LeaveRequest/CreateLeaveRequestDto.cs
index 95b50dd6..4f83950d 100644
--- a/BMA.EHR.Leave.Service/DTOs/LeaveRequest/CreateLeaveRequestDto.cs
+++ b/BMA.EHR.Leave.Service/DTOs/LeaveRequest/CreateLeaveRequestDto.cs
@@ -15,6 +15,8 @@ namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
public string? LeaveWrote { get; set; }
+ public string? LeaveRange { get; set; } = "ALL";
+
public string? LeaveAddress { get; set; }
public string? LeaveNumber { get; set; }
@@ -43,13 +45,13 @@ namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
public string? OrdainDayLocationNumber { get; set; }
- public DateTime? OrdainDayOrdination { get; set; }
+ public DateTime? OrdainDayOrdination { get; set; }
public string? OrdainDayBuddhistLentName { get; set; }
public string? OrdainDayBuddhistLentAddress { get; set; }
- public bool? HajjDayStatus { get; set; }
+ public bool? HajjDayStatus { get; set; }
public string? AbsentDaySummon { get; set; }
@@ -61,7 +63,7 @@ namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
public string? AbsentDayAt { get; set; }
- public string? StudyDaySubject { get; set; }
+ public string? StudyDaySubject { get; set; }
public string? StudyDayDegreeLevel { get; set; }
@@ -71,7 +73,7 @@ namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
public string? StudyDayTrainingName { get; set; }
- public string? StudyDayCountry { get; set; }
+ public string? StudyDayCountry { get; set; }
public string? StudyDayScholarship { get; set; }
diff --git a/BMA.EHR.Leave.Service/DTOs/LeaveRequest/GetLeaveRequestByIdDto.cs b/BMA.EHR.Leave.Service/DTOs/LeaveRequest/GetLeaveRequestByIdDto.cs
index 52bcf074..ddcc429c 100644
--- a/BMA.EHR.Leave.Service/DTOs/LeaveRequest/GetLeaveRequestByIdDto.cs
+++ b/BMA.EHR.Leave.Service/DTOs/LeaveRequest/GetLeaveRequestByIdDto.cs
@@ -5,17 +5,17 @@ namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
{
public class GetLeaveRequestByIdDto
{
- public Guid Id { get; set; } = Guid.Empty;
+ public Guid Id { get; set; } = Guid.Empty;
- public string LeaveTypeName { get; set; } = string.Empty;
+ public string LeaveTypeName { get; set; } = string.Empty;
- public Guid LeaveTypeId { get; set; } = Guid.Empty;
+ public Guid LeaveTypeId { get; set; } = Guid.Empty;
- public string FullName { get; set; } = string.Empty;
+ public string FullName { get; set; } = string.Empty;
- public DateTime DateSendLeave { get; set; } = DateTime.MinValue;
+ public DateTime DateSendLeave { get; set; } = DateTime.MinValue;
- public string Status { get; set; } = string.Empty;
+ public string Status { get; set; } = string.Empty;
public DateTime LeaveStartDate { get; set; } = DateTime.Now;
@@ -23,6 +23,8 @@ namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
public string LeaveWrote { get; set; } = string.Empty;
+ public string? LeaveRange { get; set; } = string.Empty;
+
public string LeaveAddress { get; set; } = string.Empty;
public string LeaveNumber { get; set; } = string.Empty;
@@ -33,15 +35,15 @@ namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
public string LeaveDraftDocument { get; set; }
- public DateTime? LeaveLastStart { get; set; } = DateTime.MinValue;
+ public DateTime? LeaveLastStart { get; set; } = DateTime.MinValue;
- public DateTime? LeaveLastEnd { get; set; } = DateTime.MinValue;
+ public DateTime? LeaveLastEnd { get; set; } = DateTime.MinValue;
public float LeaveTotal { get; set; } = 0;
public DateTime? LeaveBirthDate { get; set; } = DateTime.MinValue;
- public DateTime? LeaveGovernmentDate { get; set; } = DateTime.MinValue;
+ public DateTime? LeaveGovernmentDate { get; set; } = DateTime.MinValue;
public double LeaveSalary { get; set; } = 0;