451 lines
15 KiB
Vue
451 lines
15 KiB
Vue
<script setup lang="ts">
|
|
import { onMounted, ref } from "vue";
|
|
import { checkPermission } from "@/utils/permissions";
|
|
import { useQuasar } from "quasar";
|
|
import { useRoute, useRouter } from "vue-router";
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
|
|
/** importTypr*/
|
|
import type { QForm } from "quasar";
|
|
import type { ResponseData } from "@/modules/05_placement/interface/response/officer";
|
|
import type { DataProfile } from "@/modules/05_placement/interface/index/Main";
|
|
|
|
/** importComponents*/
|
|
import CardProfile from "@/components/CardProfile.vue";
|
|
|
|
/** use*/
|
|
const $q = useQuasar();
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
const edit = ref<boolean>(false);
|
|
const dataId = route.params.id as string;
|
|
const {
|
|
date2Thai,
|
|
messageError,
|
|
showLoader,
|
|
hideLoader,
|
|
success,
|
|
dialogConfirm,
|
|
convertDateToAPI,
|
|
findOrgName,
|
|
} = useCounterMixin();
|
|
|
|
const myForm = ref<QForm | null>(null);
|
|
const dataProfile = ref<DataProfile>();
|
|
const fullname = ref<string>("");
|
|
const mainData = ref<any>();
|
|
|
|
/** form แก้ไขข้อมูลเพื่อลงบัญชีแนบท้าย*/
|
|
const organizationPositionOld = ref<string>("");
|
|
const positionTypeOld = ref<string>("");
|
|
const positionLevelOld = ref<string>("");
|
|
const positionNumberOld = ref<string>("");
|
|
const salary = ref<number>(0);
|
|
const organization = ref<string>("");
|
|
const date = ref<Date | null>(null);
|
|
const dateRepatriation = ref<Date | null>(null);
|
|
const reason = ref<string>("");
|
|
const status = ref<string>("");
|
|
|
|
/** fetch ข้อมูลรายละเอียด*/
|
|
async function getData() {
|
|
showLoader();
|
|
await http
|
|
.get(config.API.repatriationDetail(dataId))
|
|
.then((res: ResponseData) => {
|
|
const data = res.data.result;
|
|
mainData.value = res.data.result;
|
|
dataProfile.value = res.data.result as unknown as DataProfile;
|
|
fullname.value = `${data.prefix}${data.firstName} ${data.lastName}`;
|
|
|
|
organizationPositionOld.value = data.organizationPositionOld
|
|
? data.organizationPositionOld
|
|
: findOrgName(data);
|
|
positionTypeOld.value = data.positionTypeOld;
|
|
positionLevelOld.value = data.positionLevelOld;
|
|
positionNumberOld.value = data.positionNumberOld;
|
|
salary.value = data.salary;
|
|
organization.value = data.organization;
|
|
reason.value = data.reason;
|
|
date.value = data.date;
|
|
dateRepatriation.value = data.dateRepatriation;
|
|
status.value = data.status;
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* ยืนยีนการบันทึกข้อมูลการแก้ไขข้อมูลเพื่อลงบัญชีแนบท้ายสำเร็จ
|
|
*/
|
|
function onSubmit() {
|
|
dialogConfirm(
|
|
$q,
|
|
async () => {
|
|
const body = {
|
|
organizationPositionOld: organizationPositionOld.value,
|
|
positionTypeOld: positionTypeOld.value,
|
|
positionLevelOld: positionLevelOld.value,
|
|
positionNumberOld: positionNumberOld.value,
|
|
amountOld: salary.value,
|
|
organization: organization.value,
|
|
date: date.value,
|
|
dateRepatriation: convertDateToAPI(dateRepatriation.value),
|
|
reason: reason.value,
|
|
};
|
|
showLoader();
|
|
await http
|
|
.put(config.API.repatriationMainEdit(dataId), body)
|
|
.then(async () => {
|
|
await getData();
|
|
await success($q, "แก้ไขข้อมูลเพื่อลงบัญชีแนบท้ายสำเร็จ");
|
|
edit.value = false;
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
},
|
|
"ต้องการแก้ไขข้อมูลหรือไม่?",
|
|
"แก้ไขข้อมูลเพื่อลงบัญชีแนบท้าย"
|
|
);
|
|
}
|
|
|
|
/**
|
|
* ยกเลิกการแก้ไขข้อมูลเพื่อลงบัญชีแนบท้ายสำเร็จ
|
|
*/
|
|
function cancelBtn() {
|
|
edit.value = !edit;
|
|
const data = mainData.value;
|
|
if (data) {
|
|
organizationPositionOld.value = data.organizationPositionOld
|
|
? data.organizationPositionOld
|
|
: findOrgName(data);
|
|
positionTypeOld.value = data.positionTypeOld;
|
|
positionLevelOld.value = data.positionLevelOld;
|
|
positionNumberOld.value = data.positionNumberOld;
|
|
salary.value = data.salary;
|
|
organization.value = data.organization;
|
|
reason.value = data.reason;
|
|
date.value = data.date;
|
|
dateRepatriation.value = data.dateRepatriation;
|
|
status.value = data.status;
|
|
}
|
|
myForm.value?.resetValidation();
|
|
// getData();
|
|
}
|
|
|
|
/**
|
|
* class Input
|
|
*/
|
|
const getClass = (val: boolean) => {
|
|
return {
|
|
"full-width inputgreen cursor-pointer": val,
|
|
"full-width cursor-pointer": !val,
|
|
};
|
|
};
|
|
|
|
onMounted(() => {
|
|
getData();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="q-gutter-sm q-pa-sm">
|
|
<div class="toptitle text-dark col-12 row items-center">
|
|
<q-btn
|
|
icon="mdi-arrow-left"
|
|
unelevated
|
|
round
|
|
dense
|
|
flat
|
|
color="primary"
|
|
class="q-mr-sm"
|
|
@click="router.push(`/placement/repatriate`)"
|
|
/>
|
|
รายละเอียดการส่งตัวกลับ {{ fullname }}
|
|
</div>
|
|
|
|
<CardProfile :data="dataProfile as DataProfile" />
|
|
|
|
<q-card bordered class="row col-12 text-dark q-mt-sm">
|
|
<q-form
|
|
ref="myForm"
|
|
greedy
|
|
@submit.prevent
|
|
@validation-success="onSubmit"
|
|
class="col-12"
|
|
>
|
|
<div class="bg-grey-1 q-pa-sm col-12 row items-center text-primary">
|
|
<div class="q-pl-sm text-weight-bold text-dark">
|
|
แก้ไขข้อมูลเพื่อลงบัญชีแนบท้าย
|
|
</div>
|
|
<q-space />
|
|
<div class="q-gutter-sm" v-if="!edit">
|
|
<q-btn
|
|
outline
|
|
color="primary"
|
|
dense
|
|
icon-right="mdi-file-edit-outline"
|
|
class="q-px-sm"
|
|
label="แก้ไข"
|
|
style="width: 80px"
|
|
@click="edit = !edit"
|
|
v-if="
|
|
!(status == 'REPORT' || status == 'DONE') &&
|
|
checkPermission($route)?.attrIsUpdate
|
|
"
|
|
/>
|
|
</div>
|
|
<div class="q-gutter-sm" v-else>
|
|
<q-btn
|
|
outline
|
|
color="public"
|
|
dense
|
|
class="q-px-sm"
|
|
label="บันทึก"
|
|
style="width: 80px"
|
|
type="submit"
|
|
/>
|
|
<q-btn
|
|
outline
|
|
color="red"
|
|
dense
|
|
class="q-px-sm"
|
|
label="ยกเลิก"
|
|
style="width: 80px"
|
|
@click="cancelBtn"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-12"><q-separator /></div>
|
|
|
|
<div class="row col-12 q-pa-md">
|
|
<div class="col-12 row bg-white q-col-gutter-md">
|
|
<div class="col-xs-12 row items-center">
|
|
<div class="col-12">
|
|
<div class="text-weight-bold">ตำแหน่ง/สังกัดเดิม</div>
|
|
</div>
|
|
<div class="col-12">
|
|
<q-input
|
|
:class="getClass(edit)"
|
|
:outlined="edit"
|
|
dense
|
|
lazy-rules
|
|
:readonly="!edit"
|
|
:borderless="!edit"
|
|
v-model="organizationPositionOld"
|
|
:rules="[(val:string) => !!val || `${'กรุณากรอกตำแหน่ง/สังกัด'}`]"
|
|
hide-bottom-space
|
|
:label="`${'ตำแหน่ง/สังกัด'}`"
|
|
type="textarea"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-4 row">
|
|
<div class="col-12">
|
|
<q-input
|
|
:class="getClass(edit)"
|
|
:outlined="edit"
|
|
dense
|
|
lazy-rules
|
|
:readonly="!edit"
|
|
:borderless="!edit"
|
|
v-model="positionTypeOld"
|
|
:rules="[(val:string) => !!val || `${'กรุณากรอกประเภทตำแหน่ง'}`]"
|
|
hide-bottom-space
|
|
:label="`${'ประเภทตำแหน่ง'}`"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-4 row">
|
|
<div class="col-12">
|
|
<q-input
|
|
:class="getClass(edit)"
|
|
:outlined="edit"
|
|
dense
|
|
lazy-rules
|
|
:readonly="!edit"
|
|
:borderless="!edit"
|
|
v-model="positionLevelOld"
|
|
:rules="[(val:string) => !!val || `${'กรุณากรอกระดับตำแหน่ง'}`]"
|
|
hide-bottom-space
|
|
:label="`${'ระดับตำแหน่ง'}`"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-4 row">
|
|
<div class="col-12">
|
|
<q-input
|
|
:class="getClass(edit)"
|
|
:outlined="edit"
|
|
dense
|
|
lazy-rules
|
|
:readonly="!edit"
|
|
:borderless="!edit"
|
|
v-model="positionNumberOld"
|
|
:rules="[(val:string) => !!val || `${'กรุณากรอกเลขที่'}`]"
|
|
hide-bottom-space
|
|
:label="`${'เลขที่'}`"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12"><q-separator /></div>
|
|
<div class="col-xs-6 col-sm-4 row">
|
|
<div class="col-12">
|
|
<q-input
|
|
:class="getClass(edit)"
|
|
:outlined="edit"
|
|
dense
|
|
lazy-rules
|
|
:readonly="!edit"
|
|
:borderless="!edit"
|
|
v-model="organization"
|
|
:rules="[
|
|
(val:string) => !!val || `${'กรุณากรอกหน่วยงานที่ให้ช่วยราชการ'}`,
|
|
]"
|
|
hide-bottom-space
|
|
:label="`${'หน่วยงานที่ให้ช่วยราชการ'}`"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-4 row">
|
|
<div class="col-12">
|
|
<datepicker
|
|
menu-class-name="modalfix"
|
|
:readonly="!edit"
|
|
v-model="date"
|
|
:locale="'th'"
|
|
autoApply
|
|
:enableTimePicker="false"
|
|
week-start="0"
|
|
>
|
|
<template #year="{ year }">{{ year + 543 }}</template>
|
|
<template #year-overlay-value="{ value }">{{
|
|
parseInt(value + 543)
|
|
}}</template>
|
|
<template #trigger>
|
|
<q-input
|
|
:class="getClass(edit)"
|
|
:outlined="edit"
|
|
dense
|
|
:readonly="!edit"
|
|
:borderless="!edit"
|
|
:model-value="date !== null ? date2Thai(date) : null"
|
|
:rules="edit ? [(val:string) => !!val || `${'กรุณาเลือกตั้งแต่วัน'}`]:[]"
|
|
hide-bottom-space
|
|
:label="`${'ตั้งแต่วัน'}`"
|
|
>
|
|
<template v-slot:prepend>
|
|
<q-icon
|
|
name="event"
|
|
class="cursor-pointer"
|
|
:style="
|
|
edit
|
|
? 'color: var(--q-primary)'
|
|
: 'color: var(--q-grey)'
|
|
"
|
|
>
|
|
</q-icon>
|
|
</template>
|
|
</q-input>
|
|
</template>
|
|
</datepicker>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-4 row">
|
|
<div class="col-12">
|
|
<datepicker
|
|
menu-class-name="modalfix"
|
|
:readonly="!edit"
|
|
v-model="dateRepatriation"
|
|
:locale="'th'"
|
|
autoApply
|
|
:enableTimePicker="false"
|
|
week-start="0"
|
|
>
|
|
<template #year="{ year }">{{ year + 543 }}</template>
|
|
<template #year-overlay-value="{ value }">{{
|
|
parseInt(value + 543)
|
|
}}</template>
|
|
<template #trigger>
|
|
<q-input
|
|
:class="getClass(edit)"
|
|
:outlined="edit"
|
|
dense
|
|
:readonly="!edit"
|
|
:borderless="!edit"
|
|
:model-value="
|
|
dateRepatriation !== null
|
|
? date2Thai(dateRepatriation)
|
|
: null
|
|
"
|
|
:rules="edit ? [
|
|
(val:string) => !!val || `${'กรุณาเลือกวันที่ส่งตัวกลับ'}`,
|
|
] : []"
|
|
hide-bottom-space
|
|
:label="`${'วันที่ส่งตัวกลับ'}`"
|
|
>
|
|
<template v-slot:prepend>
|
|
<q-icon
|
|
name="event"
|
|
class="cursor-pointer"
|
|
:style="
|
|
edit
|
|
? 'color: var(--q-primary)'
|
|
: 'color: var(--q-grey)'
|
|
"
|
|
>
|
|
</q-icon>
|
|
</template>
|
|
</q-input>
|
|
</template>
|
|
</datepicker>
|
|
</div>
|
|
</div>
|
|
<div class="col-12">
|
|
<q-input
|
|
:class="getClass(edit)"
|
|
:outlined="edit"
|
|
dense
|
|
lazy-rules
|
|
:readonly="!edit"
|
|
:borderless="!edit"
|
|
v-model="reason"
|
|
hide-bottom-space
|
|
:label="`${'หมายเหตุ '}`"
|
|
type="textarea"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</q-form>
|
|
</q-card>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scope>
|
|
.q-img {
|
|
border-radius: 5px;
|
|
height: 70px;
|
|
}
|
|
|
|
.text-top {
|
|
color: gray;
|
|
font-weight: 400;
|
|
padding-bottom: 3px;
|
|
}
|
|
|
|
.text-detail {
|
|
font-weight: 500;
|
|
}
|
|
</style>
|