แก้ไขโครงการ/หลักสูตรการฝึกอบรม => tab Other

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-11 13:52:22 +07:00
parent 7ca03dcdb0
commit a764adf70e
3 changed files with 222 additions and 85 deletions

View file

@ -0,0 +1,23 @@
interface FormData {
dateStart: Date | null; //วันที่เริ่มต้น
dateEnd: Date | null; //วันที่สิ้นสุด
totalDate: number | null; //รวมระยะเวลา (วัน)
developmentAddresss: [{ address: string; provinceId: string }]; //ที่อยู่ ,จังหวัด
budget: string; //ประเภทงบประมาณ(งบตามข้อบัญญัติ->REGULATIONBUDGET, งบประมาณกรุงเทพมหานคร->BANGKOKBUDGET, เงินนอกงบประมาณ->OUTSIDEBUDGET)
budgetSub: string;
accept: number | string | null; //จํานวนงบประมาณที่ขอรับการจัดสรรฯ
receive: number | string | null; //จํานวนงบประมาณที่ได้รับการจัดสรรฯ
approved: number | string | null; //จํานวนงบประมาณที่ได้รับอนุมัติ
budgetPay: number | string | null; //จํานวนงบประมาณที่จ่ายจริง
issues: string; //ประเด็นความเสี่ยง
chance: number | null; //โอกาสที่จะเกิด
effects: number | null; //ผลกระทบจากการเกิด
riskLevel: string; //ระดับความเสี่ยง
riskManagement: string; //เเนวทางการบริหารความเสี่ยง
expect: string; //ประโยชน์ที่คาดว่าจะได้รับ
topicAcademic: string; //หัวข้อ/ประเด็นการฝึกอบรม ศึกษาดูงาน
addressAcademic: string; //สถานที่ฝึกอบรม ศึกษาดูงาน
provinceActualId: string;
}
export type { FormData };