แก้ พัฒนา

This commit is contained in:
setthawutttty 2025-04-24 10:17:56 +07:00
parent 3f0b3924d4
commit 3ad8096378
11 changed files with 1140 additions and 458 deletions

View file

@ -96,6 +96,8 @@ interface FormProjectDetail {
interface DevelopmentAddress {
address: string;
provinceId: string;
addressType: string;
country: string;
}
interface DataHistory {

View file

@ -34,7 +34,7 @@ interface FormsSholarship {
bookNo: string; //เลขที่หนังสืออนุมัติ
bookNoDate: Date | null; //ลงวันที่(หนังสือ)
bookApproveDate: Date | null; //หนังสืออนุมัติเมื่อวันที่
useOfficialTime: boolean; //ใช้เวลาราชการ
useOfficialTime: string; //ใช้เวลาราชการ
changeDetail: string; //เปลี่ยนแปลงรายละเอียด
scholarshipType: string; //เลือกประเภททุน
fundType: string; //ประเภททุน
@ -61,6 +61,7 @@ interface FormsSholarship {
totalPeriod: string; //รวมระยะเวลาในการศึกษา/รวมระยะเวลาในการฝึกอบรม
planType: string; // INPLAN ในแผนฯ, OUTPLAN นอกแผนฯ
isNoUseBudget: boolean; //
budgetSourceOther: string; //
}
export type { FormsSholarship };

View file

@ -44,7 +44,7 @@ interface DataSholarship {
bookNo: string; //เลขที่หนังสืออนุมัติ
bookNoDate: Date | null; //ลงวันที่(หนังสือ)
bookApproveDate: Date | null; //หนังสืออนุมัติเมื่อวันที่
useOfficialTime: boolean; //ใช้เวลาราชการ
useOfficialTime: string; //ใช้เวลาราชการ
changeDetail: string; //เปลี่ยนแปลงรายละเอียด
scholarshipType: string; //เลือกประเภททุน
fundType: string; //ประเภททุน
@ -70,6 +70,7 @@ interface DataSholarship {
studyAbroadEndDate: Date | null; //วันสิ้นสุดการศึกษาดูงานต่างประเทศ
totalPeriod: string; //รวมระยะเวลาในการศึกษา/รวมระยะเวลาในการฝึกอบรม
status: string;
budgetSourceOther: string;
planType: string; // INPLAN ในแผนฯ, OUTPLAN นอกแผนฯ
isNoUseBudget: boolean; // ไม่ใช้งบประมาณ
}