407 lines
13 KiB
Vue
407 lines
13 KiB
Vue
<script setup lang="ts">
|
|
import { onMounted, ref, reactive } from "vue";
|
|
import { useQuasar } from "quasar";
|
|
import { useRoute, useRouter } from "vue-router";
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import type { ResponseTitle } from "@/modules/05_placement/interface/response/Receive";
|
|
import type { DataProfile } from "@/modules/05_placement/interface/response/AppointMent";
|
|
import type { QForm } from "quasar";
|
|
import http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
import PopupPersonal from "@/components/Dialogs/PopupPersonal.vue";
|
|
import CardProfile from "@/components/CardProfile.vue";
|
|
|
|
const modalPersonal = ref<boolean>(false);
|
|
const personId = ref<string>("");
|
|
const $q = useQuasar();
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
const mixin = useCounterMixin();
|
|
|
|
const dataProfile = ref<DataProfile>();
|
|
|
|
const myForm = ref<QForm | null>(null);
|
|
const edit = ref<boolean>(false);
|
|
const profileId = ref<string>("");
|
|
const organizationPositionOld = ref<string>("");
|
|
const positionTypeOld = ref<string>("");
|
|
const positionLevelOld = ref<string>("");
|
|
const posNo = ref<string>("");
|
|
const salary = ref<number>(0);
|
|
const educationOld = ref<string>("");
|
|
const reason = ref<string>("");
|
|
const date = ref<Date | null>(null);
|
|
const status = ref<string>("");
|
|
const avatar = ref<string>("");
|
|
|
|
const paramsId = route.params.id;
|
|
const {
|
|
date2Thai,
|
|
messageError,
|
|
showLoader,
|
|
hideLoader,
|
|
success,
|
|
dialogConfirm,
|
|
} = mixin;
|
|
|
|
const title = ref<ResponseTitle>({
|
|
fullname: "",
|
|
organizationPositionOld: "",
|
|
positionLevelOld: "",
|
|
positionTypeOld: "",
|
|
});
|
|
|
|
//เรียกข้อมูลตาม id
|
|
const fecthappointmentByid = async () => {
|
|
showLoader();
|
|
await http
|
|
.get(config.API.appointmentByid(paramsId.toString()))
|
|
.then((res) => {
|
|
dataProfile.value = res.data.result as unknown as DataProfile;
|
|
const data = res.data.result;
|
|
|
|
profileId.value = data.profileId;
|
|
title.value.fullname = `${data.prefix}${data.firstName ?? "-"} ${
|
|
data.lastName ?? "-"
|
|
}`;
|
|
title.value.organizationPositionOld = data.organizationPositionOld ?? "-";
|
|
title.value.positionLevelOld = data.positionLevelOld ?? "-";
|
|
title.value.positionTypeOld = data.positionTypeOld ?? "-";
|
|
(status.value = data.status),
|
|
(educationOld.value = data.educationOld ?? "-");
|
|
organizationPositionOld.value = data.organizationPositionOld;
|
|
positionTypeOld.value = data.positionTypeOld;
|
|
positionLevelOld.value = data.positionLevelOld;
|
|
posNo.value = data.positionNumberOld;
|
|
salary.value = data.salary ?? 0;
|
|
reason.value = data.reason;
|
|
date.value = data.positionDate;
|
|
avatar.value = data.avatar ?? "";
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
};
|
|
|
|
// เเก้ไขข้อมูล
|
|
function putAppointment() {
|
|
dialogConfirm(
|
|
$q,
|
|
() => {
|
|
let data = {
|
|
educationOld: educationOld.value,
|
|
organizationPositionOld: organizationPositionOld.value,
|
|
positionTypeOld: positionTypeOld.value,
|
|
positionLevelOld: positionLevelOld.value,
|
|
positionNumberOld: posNo.value,
|
|
amountOld: salary.value.toString().replace(/,/g, ""),
|
|
reason: reason.value,
|
|
positionDate: date.value,
|
|
};
|
|
showLoader();
|
|
http
|
|
.put(config.API.appointmentByid(paramsId.toString()), data)
|
|
.then(() => {
|
|
success($q, "บันทึกข้อมูลสำเร็จ");
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
fecthappointmentByid();
|
|
edit.value = false;
|
|
});
|
|
},
|
|
"ต้องการแก้ไขข้อมูลหรือไม่?",
|
|
"แก้ไขข้อมูลเพื่อลงบัญชีแนบท้าย"
|
|
);
|
|
}
|
|
const cancel = () => {
|
|
edit.value = false;
|
|
fecthappointmentByid();
|
|
myForm.value?.resetValidation();
|
|
};
|
|
const getClass = (val: boolean) => {
|
|
return {
|
|
"full-width inputgreen cursor-pointer": val,
|
|
"full-width cursor-pointer": !val,
|
|
};
|
|
};
|
|
|
|
function onclickViewinfo(id: string) {
|
|
modalPersonal.value = true;
|
|
personId.value = id;
|
|
}
|
|
|
|
function updatemodalPersonal(modal: boolean) {
|
|
modalPersonal.value = modal;
|
|
}
|
|
|
|
onMounted(async () => {
|
|
await fecthappointmentByid();
|
|
});
|
|
</script>
|
|
<template>
|
|
<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(`/appoint-promote`)"
|
|
/>
|
|
รายละเอียดการแต่งตั้ง-เลื่อน-ย้าย {{ title.fullname }}
|
|
</div>
|
|
<CardProfile :data="dataProfile as DataProfile" />
|
|
|
|
<q-card bordered class="row col-12 text-dark q-mt-sm">
|
|
<q-form
|
|
greedy
|
|
@submit.prevent
|
|
@validation-success="putAppointment"
|
|
ref="myForm"
|
|
>
|
|
<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 v-if="status !== 'DONE' && status !== 'REPORT'">
|
|
<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"
|
|
/>
|
|
</div>
|
|
<div class="q-gutter-sm" v-else>
|
|
<q-btn
|
|
outline
|
|
type="submit"
|
|
color="public"
|
|
dense
|
|
class="q-px-sm"
|
|
label="บันทึก"
|
|
style="width: 80px"
|
|
/>
|
|
<q-btn
|
|
outline
|
|
color="red"
|
|
dense
|
|
class="q-px-sm"
|
|
label="ยกเลิก"
|
|
style="width: 80px"
|
|
@click="cancel()"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12"><q-separator /></div>
|
|
|
|
<div class="row col-12 q-pa-md">
|
|
<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="educationOld"
|
|
:rules="[(val) => !!val || `${'กรุณากรอกวุฒิการศึกษา'}`]"
|
|
hide-bottom-space
|
|
:label="`${'วุฒิการศึกษา'}`"
|
|
type="text"
|
|
/>
|
|
</div>
|
|
</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 q-pa-md 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) => !!val || `${'กรุณากรอกตำแหน่ง/สังกัด'}`]"
|
|
hide-bottom-space
|
|
:label="`${'ตำแหน่ง/สังกัด'}`"
|
|
type="textarea"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-xs-6 col-sm-3 row">
|
|
<div class="col-12">
|
|
<q-input
|
|
:class="getClass(edit)"
|
|
:outlined="edit"
|
|
dense
|
|
lazy-rules
|
|
:readonly="!edit"
|
|
:borderless="!edit"
|
|
v-model="positionTypeOld"
|
|
:rules="[(val) => !!val || `${'กรุณากรอกตำแหน่งประเภท'}`]"
|
|
hide-bottom-space
|
|
:label="`${'ตำแหน่งประเภท'}`"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-3 row">
|
|
<div class="col-12">
|
|
<q-input
|
|
:class="getClass(edit)"
|
|
:outlined="edit"
|
|
dense
|
|
lazy-rules
|
|
:readonly="!edit"
|
|
:borderless="!edit"
|
|
v-model="positionLevelOld"
|
|
:rules="[(val) => !!val || `${'กรุณากรอกประเภทตำแหน่ง'}`]"
|
|
hide-bottom-space
|
|
:label="`${'ประเภทตำแหน่ง'}`"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-3 row">
|
|
<div class="col-12">
|
|
<q-input
|
|
:class="getClass(edit)"
|
|
:outlined="edit"
|
|
dense
|
|
lazy-rules
|
|
:readonly="!edit"
|
|
:borderless="!edit"
|
|
v-model="posNo"
|
|
:rules="[(val) => !!val || `${'กรุณากรอกเลขที่'}`]"
|
|
hide-bottom-space
|
|
:label="`${'เลขที่'}`"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-3 row">
|
|
<div class="col-12">
|
|
<q-input
|
|
v-model="salary"
|
|
:outlined="edit"
|
|
dense
|
|
:readonly="!edit"
|
|
hide-bottom-space
|
|
:borderless="!edit"
|
|
:label="`${'เงินเดือน'}`"
|
|
:rules="[(val:number) => !!val || `${'กรุณากรอกเงินเดือน'}`]"
|
|
lazy-rules
|
|
mask="###,###,###,###"
|
|
reverse-fill-mask
|
|
class="inputgreen"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-12"><q-separator /></div>
|
|
<div class="col-xs-6 col-sm-6 row items-center">
|
|
<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
|
|
:borderless="!edit"
|
|
:readonly="!edit"
|
|
:model-value="date !== null ? date2Thai(date) : null"
|
|
:rules="[(val) => !!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>
|
|
|
|
<PopupPersonal
|
|
:modal="modalPersonal"
|
|
:id="personId"
|
|
@update:modal="updatemodalPersonal"
|
|
/>
|
|
</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>
|