diff --git a/src/modules/11_discipline/components/3_InvestigateDisciplinary/Form.vue b/src/modules/11_discipline/components/3_InvestigateDisciplinary/Form.vue
index cc013c673..c43848b3a 100644
--- a/src/modules/11_discipline/components/3_InvestigateDisciplinary/Form.vue
+++ b/src/modules/11_discipline/components/3_InvestigateDisciplinary/Form.vue
@@ -182,7 +182,7 @@ const dateEndInputStyle = computed(() => {
if (formData.disciplinaryDateStart) {
const currentDate = new Date();
const investigationDateEnd = new Date(formData.disciplinaryDateEnd as Date);
-
+
const isInNext7Days =
investigationDateEnd >= currentDate &&
investigationDateEnd <=
@@ -378,11 +378,11 @@ async function fetchDatadetail() {
prefix: item.prefix,
firstName: item.firstName,
lastName: item.lastName,
- position: item.position == '' ? "-" : item.position,
- email: item.email == '' ? '-' : item.email,
- phone: item.phone == '' ? '-' : item.phone,
- commandNo: item.commandNo == '' ? '-' : item.commandNo,
- duty: item.duty == '' ? '-' : item.duty,
+ position: item.position == "" ? "-" : item.position,
+ email: item.email == "" ? "-" : item.email,
+ phone: item.phone == "" ? "-" : item.phone,
+ commandNo: item.commandNo == "" ? "-" : item.commandNo,
+ duty: item.duty == "" ? "-" : item.duty,
check: "props",
}));
@@ -476,8 +476,8 @@ async function fetchDListDirector() {
firstName: e.firstName,
lastName: e.lastName,
position: e.position,
- email: e.email == '' ? '-' : e.email,
- phone: e.phone == '' ? '-' : e.phone,
+ email: e.email == "" ? "-" : e.email,
+ phone: e.phone == "" ? "-" : e.phone,
total: e.total,
duty: e.duty,
}));
@@ -684,98 +684,93 @@ onMounted(async () => {
-
-
+
+
แจ้งเตือน
ยังไม่ได้บันทึกข้อมูล
-
-