diff --git a/src/api/05_placement/api.placement.ts b/src/api/05_placement/api.placement.ts
index f844d90b4..e6c6e0847 100644
--- a/src/api/05_placement/api.placement.ts
+++ b/src/api/05_placement/api.placement.ts
@@ -61,6 +61,8 @@ export default {
`${placement}/position/clear/${personalId}`,
// order
+ organizationsOrder: () => `${order}/order/organizations`,
+ approverOC: (id: string) => `${order}/order/approver/${id}`,
yearOptionsOrder: () => `${order}/order/fiscal-year`,
listOrder: () => `${order}/order`,
detailOrder: (orderId: string) => `${order}/order/detail/${orderId}`,
@@ -120,7 +122,7 @@ export default {
officerDetail: (id: string) => `${placement}/officer/${id}`,
officerMainDelete: (id: string) => `${placement}/officer/${id}`,
officerMainReport: () => `${placement}/officer/report`,
- officerMainEdit: (id:string) => `${placemenHelpGov}/${id}`,
+ officerMainEdit: (id: string) => `${placemenHelpGov}/${id}`,
// ส่งตัวกลับ
placemenRepatriation,
@@ -128,15 +130,15 @@ export default {
repatriationDetail: (id: string) => `${placement}/repatriation/${id}`,
repatriationMainDelete: (id: string) => `${placement}/repatriation/${id}`,
repatriationMainReport: () => `${placement}/repatriation/report`,
- repatriationMainEdit: (id:string) => `${placemenRepatriation}/${id}`,
+ repatriationMainEdit: (id: string) => `${placemenRepatriation}/${id}`,
// ขอย้าย
placemenRelocation,
relocationMain: () => `${placement}/relocation`,
- relocationDetail: (id:string) => `${placement}/relocation/${id}`,
- relocationMainDelete: (id:string) => `${placement}/relocation/${id}`,
+ relocationDetail: (id: string) => `${placement}/relocation/${id}`,
+ relocationMainDelete: (id: string) => `${placement}/relocation/${id}`,
relocationMainReport: () => `${placement}/relocation/report`,
- relocationMainPut: (id:string) => `${placement}/relocation/position/${id}`,
- relocationMainEdit: (id:string) => `${placemenRelocation}/${id}`,
+ relocationMainPut: (id: string) => `${placement}/relocation/position/${id}`,
+ relocationMainEdit: (id: string) => `${placemenRelocation}/${id}`,
// อื่นๆ
placemenOther,
otherMain: () => `${placemenOther}`,
diff --git a/src/modules/05_placement/components/probation/FormEvaluation/Footer.vue b/src/modules/05_placement/components/probation/FormEvaluation/Footer.vue
deleted file mode 100644
index 20f98ed57..000000000
--- a/src/modules/05_placement/components/probation/FormEvaluation/Footer.vue
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
- ผู้บังคับบัญชาผู้มอบหมายงาน
-
-
-
-
-
-
- {{ year + 543 }}
-
-
- {{ parseInt(value + 543) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/modules/05_placement/components/probation/FormEvaluation/FormSaveResult.vue b/src/modules/05_placement/components/probation/FormEvaluation/FormSaveResult.vue
index 15dde4bc2..6ae8a75d0 100644
--- a/src/modules/05_placement/components/probation/FormEvaluation/FormSaveResult.vue
+++ b/src/modules/05_placement/components/probation/FormEvaluation/FormSaveResult.vue
@@ -41,7 +41,7 @@ const props = defineProps({
});
onMounted(async () => {
- console.log("tab===>", props.tab);
+ // console.log("tab===>", props.tab);
if (props.tab !== undefined) {
round.value = props.tab.charAt(4);
@@ -50,6 +50,7 @@ onMounted(async () => {
}
await fecthFormdata(assignId.value);
});
+
const fecthFormdata = async (id: string) => {
await http
.get(config.API.formevaluateRecord(id))
@@ -64,13 +65,14 @@ const fecthFormdata = async (id: string) => {
option.value.push(res.data.data.director);
Autherise.value = res.data.data.director.name;
list1_1.value = res.data.data.assign_output;
- evaluate_expenct_level.value = res.data.data.assign_output.map((e) => ({
+ evaluate_expenct_level.value = res.data.data.assign_output.map((e: any) => ({
id: e.id,
labal: e.output_desc,
}));
- evaluate_ouptut.value = res.data.data.assign_output.map((e) => ({
+ evaluate_ouptut.value = res.data.data.assign_output.map((e: any) => ({
id: e.id,
}));
+
checkArray.value = list1_1.value.length;
console.log(res.data.data.evaluate_no, round.value);
@@ -87,7 +89,7 @@ const fecthFormRound = async (id: string, no: string) => {
showLoader();
await http
.get(config.API.formevaluateround(id, no))
- .then((res: any) => {
+ .then(async(res: any) => {
// console.log(res);
let data = res.data.data.evaluate;
start_date.value = data.date_start;
@@ -133,6 +135,14 @@ const fecthFormRound = async (id: string, no: string) => {
) {
etc2.value = true;
}
+
+ if (data.achievements) {
+ await data.achievements.map((e: any, index: number) => {
+ evaluate_expenct_level.value[index].level = e.evaluate_expect_level
+ evaluate_ouptut.value[index].text = e.evaluate_output_desc
+ evaluate_ouptut.value[index].level = e.evaluate_output_level
+ });
+ }
status.value = false;
})
.catch((e) => {
@@ -405,7 +415,7 @@ const saveformdata = async (data: any) => {
- {{ "ครั้งที่" + round }}
+ {{ "ครั้งที่ " + round }}
ระหว่างวันที่
{{ date2Thai(start_date) }}
ถึงวันที่
@@ -447,6 +457,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -498,6 +509,7 @@ const saveformdata = async (data: any) => {
hide-bottom-space
:row="1"
:rules="evaluate_ouptutRules"
+ :disable="!status"
/>
@@ -509,6 +521,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -551,6 +564,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -590,6 +604,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -629,6 +644,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -668,6 +684,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -707,6 +724,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -782,6 +800,7 @@ const saveformdata = async (data: any) => {
@click="
(achievement_other.text = ''), (achievement_other.level = 0)
"
+ :disable="!status"
/>
@@ -805,6 +824,7 @@ const saveformdata = async (data: any) => {
:rules="[
(val) => (val && val.length > 0) || 'กรุณากรอกข้อความ',
]"
+ :disable="!status"
/>
@@ -816,6 +836,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -857,6 +878,7 @@ const saveformdata = async (data: any) => {
:row="5"
:rules="achievement_strengthRules"
ref="achievement_strengthRef"
+ :disable="!status"
/>
@@ -876,6 +898,7 @@ const saveformdata = async (data: any) => {
:row="5"
:rules="achievement_inproveRules"
ref="achievement_inproveRef"
+ :disable="!status"
/>
@@ -911,6 +934,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -958,6 +982,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -1005,6 +1030,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -1037,6 +1063,7 @@ const saveformdata = async (data: any) => {
dense
v-model="etc2"
@click="(behavio_orther.text = ''), (behavio_orther.level = 0)"
+ :disable="!status"
/>
{
:rules="[
(val) => (val && val.length > 0) || 'กรุณากรอกข้อความ',
]"
+ :disable="!status"
/>
@@ -1072,6 +1100,7 @@ const saveformdata = async (data: any) => {
color="grey"
:color-selected="ratingColors"
label="ระดับการประเมินพฤติกรรม"
+ :disable="!status"
>
ต่ำกว่าความคาดหวังมาก
@@ -1113,6 +1142,7 @@ const saveformdata = async (data: any) => {
:row="5"
:rules="behavio_strengthRules"
ref="behavio_strengthRef"
+ :disable="!status"
/>
@@ -1132,6 +1162,7 @@ const saveformdata = async (data: any) => {
:row="5"
:rules="behavio_inproveRules"
ref="behavio_inproveRef"
+ :disable="!status"
/>
@@ -1163,6 +1194,7 @@ const saveformdata = async (data: any) => {
v-model="orientation"
val="1"
label="ดำเนินการเเล้ว"
+ :disable="!status"
/>
{
v-model="orientation"
val="0"
label=" ยังไม่ได้ดำเนินการ"
+ :disable="!status"
/>
@@ -1194,6 +1227,7 @@ const saveformdata = async (data: any) => {
v-model="self_learning"
val="0"
label=" ยังไม่ได้ดำเนินการ"
+ :disable="!status"
/>
@@ -1218,6 +1252,7 @@ const saveformdata = async (data: any) => {
v-model="training_seminar"
val="0"
label=" ยังไม่ได้ดำเนินการ"
+ :disable="!status"
/>
@@ -1237,6 +1272,7 @@ const saveformdata = async (data: any) => {
v-model="other_training"
val="1"
label="ดำเนินการเเล้ว"
+ :disable="!status"
/>
{
"
:label="`${'ลงวันที่'}`"
:rules="[(val) => !!val || `${'กรุณาเลือกลงวันที่'}`]"
+ :disable="!status"
>
{
-
-
diff --git a/src/modules/05_placement/components/probation/MainDetail.vue b/src/modules/05_placement/components/probation/MainDetail.vue
index 8ad5c3a0f..b5059231d 100644
--- a/src/modules/05_placement/components/probation/MainDetail.vue
+++ b/src/modules/05_placement/components/probation/MainDetail.vue
@@ -76,7 +76,7 @@ const activeTab = ref("tab1");
-->
- แบบประเมินผล (ผู้บังคับบัญชา)
+ แบบประเมินผล
(ผู้บังคับบัญชา)
@@ -87,7 +87,7 @@ const activeTab = ref("tab1");
-->
- แบบประเมินผล (คณะกรรมการ)
+ แบบประเมินผล
(คณะกรรมการ)
@@ -98,7 +98,7 @@ const activeTab = ref("tab1");
-->
- แบบรายงานการประเมินฯ
+ แบบรายงาน
การประเมินฯ
diff --git a/src/modules/05_placement/components/probation/form/formEva1.vue b/src/modules/05_placement/components/probation/form/formEva1.vue
deleted file mode 100644
index c5f777842..000000000
--- a/src/modules/05_placement/components/probation/form/formEva1.vue
+++ /dev/null
@@ -1,472 +0,0 @@
-
-
-
-
- 1
- ผลสัมฤทธิ์ของการทดลองปฏิบัติบัติหน้าที่ราชการ
-
-
-
- 1.1 ความสำเร็จของงานที่ได้รับมอบหมาย
-
-
- 1.ผลผลิตของงานที่คาดหวัง
-
-
-
-
-
- {{ list.label }}
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
-
- 1.1 ความสำเร็จของงานที่ได้รับมอบหมาย
-
-
- 1.ผลผลิตของงานที่เกิดขึ้น
-
-
-
-
-
-
-
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
-
- 1.2 ความรู้ความสามารถ
-
-
-
-
-
- ความรู้ความสามารถ
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
- 1.3 ทักษะ
-
-
-
-
-
- ทักษะ
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
- 1.4 สมรรถนะ
-
-
-
-
-
- สมรรถนะ
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
- 1.5 ความสามารถในการเรียนรู้งาน
-
-
-
-
-
- ความสามารถในการเรียนรู้งาน
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
- 1.6 ความสามารถในการปรับใช้ความรู้กับงานในหน้าที่
-
-
-
-
-
- ความสามารถในการปรับใช้ความรู้กับงานในหน้าที่
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
- 1.7 อื่นๆ
-
-
-
-
-
-
-
-
-
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/modules/05_placement/components/probation/form/formEva2.vue b/src/modules/05_placement/components/probation/form/formEva2.vue
deleted file mode 100644
index 0b4771475..000000000
--- a/src/modules/05_placement/components/probation/form/formEva2.vue
+++ /dev/null
@@ -1,289 +0,0 @@
-
-
-
-
- 2
- พฤติกรรมของผู้ทดลองปฏิบัติบัติหน้าที่ราชการ
-
-
-
- 2.1 ความประพฤติ
-
-
-
-
-
- {{ list.label }}
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
-
- 2.2 ความมีคุณธรรมจริยธรรม
-
-
-
-
-
- {{ list.label }}
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
-
- 2.3 การรักษาวินัย
-
-
-
-
-
- {{ list.label }}
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
-
- 2.4 อื่นๆ
-
-
-
-
-
-
-
-
-
-
-
-
-
- ต่ำกว่าความคาดหวังมาก
-
-
- ต่ำกว่าความคาดหวังค่อนข้างมาก
-
-
- เป็นไปตามความคาดหวัง
-
-
- สูงว่าความคาดหวังค่อนข้างมาก
-
-
- สูงกว่าความคาดหวังมาก
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/modules/05_placement/components/probation/form/formEva3.vue b/src/modules/05_placement/components/probation/form/formEva3.vue
deleted file mode 100644
index e368f2dc6..000000000
--- a/src/modules/05_placement/components/probation/form/formEva3.vue
+++ /dev/null
@@ -1,130 +0,0 @@
-
-
-
-
- 3
- การพัฒนาผู้ทดลองปฏิบัติบัติหน้าที่ราชการ
-
-
-
-
-
- 1. การปฐมนิเทศ
-
-
-
-
-
-
-
-
-
-
-
- 2. การเรียนรู้ด้วยตนเอง
-
-
-
-
-
-
-
-
-
-
-
- 3. การอบรมสัมนาร่วมกัน
-
-
-
-
-
-
-
-
-
-
-
- 4. การอบรมอื่น ๆ ตามที่หน่วยงานกำหนด (ถ้ามี)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/modules/05_placement/components/probation/form/formEvaOrder.vue b/src/modules/05_placement/components/probation/form/formEvaOrder.vue
deleted file mode 100644
index 2a0c7f662..000000000
--- a/src/modules/05_placement/components/probation/form/formEvaOrder.vue
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
- ผู้บังคับบัญชาผู้มอบหมายงาน
-
-
-
-
-
-
- {{ year + 543 }}
-
-
- {{ parseInt(value + 543) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/modules/05_placement/components/probation/form/formEvacomment.vue b/src/modules/05_placement/components/probation/form/formEvacomment.vue
deleted file mode 100644
index 5dc58496c..000000000
--- a/src/modules/05_placement/components/probation/form/formEvacomment.vue
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
- จุดเด่น (ไม่เกิน 5 บรรทัด)
-
-
-
-
-
-
- สิ่งที่ควรปรับปรุง (ไม่เกิน 5 บรรทัด)
-
-
-
-
-
-
diff --git a/src/modules/05_placement/components/probation/tabs/tabs2.vue b/src/modules/05_placement/components/probation/tabs/tabs2.vue
deleted file mode 100644
index 60ed911ee..000000000
--- a/src/modules/05_placement/components/probation/tabs/tabs2.vue
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
- ดาวน์โหลด
-
-
-
-
- ไฟล์ .PDF
-
-
-
- ไฟล์ .docx
-
-
-
-
-
-
-
- ดาวน์โหลด
-
-
-
-
- ไฟล์ .PDF
-
-
-
- ไฟล์ .docx
-
-
-
-
-
-
-
-
- เพิ่มบันทึกผลการทดลอง
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/modules/05_placement/components/probation/tabs/tabs3.vue b/src/modules/05_placement/components/probation/tabs/tabs3.vue
deleted file mode 100644
index 62cebf32c..000000000
--- a/src/modules/05_placement/components/probation/tabs/tabs3.vue
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
- ดาวน์โหลด
-
-
-
-
- ไฟล์ .PDF
-
-
-
- ไฟล์ .docx
-
-
-
-
-
-
-
- ดาวน์โหลด
-
-
-
-
- ไฟล์ .PDF
-
-
-
- ไฟล์ .docx
-
-
-
-
-
-
-
-
- เพิ่มบันทึกผลการทดลอง
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/modules/05_placement/components/probation/tabs/tabs4.vue b/src/modules/05_placement/components/probation/tabs/tabs4.vue
deleted file mode 100644
index 62cebf32c..000000000
--- a/src/modules/05_placement/components/probation/tabs/tabs4.vue
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
- ดาวน์โหลด
-
-
-
-
- ไฟล์ .PDF
-
-
-
- ไฟล์ .docx
-
-
-
-
-
-
-
- ดาวน์โหลด
-
-
-
-
- ไฟล์ .PDF
-
-
-
- ไฟล์ .docx
-
-
-
-
-
-
-
-
- เพิ่มบันทึกผลการทดลอง
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/modules/10_order/components/step/step01.vue b/src/modules/10_order/components/step/step01.vue
index 4005a2ba4..73d358cf5 100644
--- a/src/modules/10_order/components/step/step01.vue
+++ b/src/modules/10_order/components/step/step01.vue
@@ -1,197 +1,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ year + 543 }}
- {{
- parseInt(value + 543)
- }}
-
-
-
-
-
-
-
-
-
-
- {{ year + 543 }}
-
-
- {{ parseInt(value + 543) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ year + 543 }}
-
-
- {{ parseInt(value + 543) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ year + 543 }}
-
-
- {{ parseInt(value + 543) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- บันทึก
-
-
-
-
-
+divdiv
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+ {{
+ parseInt(value + 543)
+ }}
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ กรุณาเลือกคำสั่งโดยก่อน
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ year + 543 }}
+
+
+ {{ parseInt(value + 543) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ บันทึก
+
+
+
+