325 lines
12 KiB
Vue
325 lines
12 KiB
Vue
<script setup lang="ts">
|
|
import { onMounted, ref } 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 { ResponseDataDetail } from "@/modules/05_placement/interface/response/Transfer";
|
|
import type { OtherdataInterface,resApiData } from "@/modules/05_placement/interface/response/OhterMain";
|
|
import type { QForm } from "quasar";
|
|
|
|
import http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
import keycloak from "@/plugins/keycloak";
|
|
|
|
import CurruncyInput from "@/components/CurruncyInput.vue";
|
|
|
|
const $q = useQuasar();
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
const mixin = useCounterMixin();
|
|
const paramsId = route.params.id;
|
|
const {
|
|
messageError,
|
|
showLoader,
|
|
hideLoader,
|
|
date2Thai,
|
|
dialogConfirm,
|
|
success,
|
|
} = mixin;
|
|
|
|
const roleAdmin = ref<boolean>(false);
|
|
const title = ref<ResponseTitle>({
|
|
fullname: "",
|
|
organizationPositionOld: "",
|
|
positionLevelOld: "",
|
|
positionTypeOld: "",
|
|
});
|
|
const responseData = ref<ResponseDataDetail>({
|
|
profileId: "",
|
|
avataPath: "",
|
|
createdAt: new Date(),
|
|
date: new Date(),
|
|
id: "",
|
|
organization: "",
|
|
organizationPositionOld: "",
|
|
positionLevelOld: "",
|
|
positionNumberOld: "",
|
|
positionTypeOld: "",
|
|
reason: "",
|
|
salary: 0,
|
|
status: "",
|
|
fullname: "",
|
|
});
|
|
const edit = ref<boolean>(false);
|
|
const organizationPositionOld = ref<string>("");
|
|
const positionTypeOld = ref<string>("");
|
|
const myform = ref<any>();
|
|
const positionLevelOld = ref<string>("");
|
|
const posNo = ref<string>("");
|
|
const salary = ref<number>(0);
|
|
const date = ref<Date | null>(null);
|
|
const reason = ref<string>("");
|
|
const Otherdata = ref<OtherdataInterface>({
|
|
citizenId: "",
|
|
prefixId: "",
|
|
firstname: "",
|
|
lastname: "",
|
|
});
|
|
const avatar = ref<string>("");
|
|
|
|
//-----(fetch data by id)-----//
|
|
const fecthOther = async () => {
|
|
showLoader();
|
|
await http
|
|
.get(config.API.otherByid(paramsId.toString()))
|
|
.then((res: resApiData) => {
|
|
const data = res.data.result;
|
|
Otherdata.value = data
|
|
avatar.value = data.avatar ?? "";
|
|
title.value.fullname = `${data.firstname ?? "-"} ${data.lastname ?? "-"}`;
|
|
title.value.organizationPositionOld = data.organizationPositionOld ?? "-";
|
|
title.value.positionLevelOld = data.positionLevelOld ?? "-";
|
|
title.value.positionTypeOld = data.positionTypeOld ?? "-";
|
|
responseData.value.profileId = data.profileId;
|
|
responseData.value.createdAt = data.createdAt;
|
|
responseData.value.id = data.id ?? "";
|
|
responseData.value.organizationPositionOld = data.organizationPositionOld ?? "";
|
|
responseData.value.positionLevelOld = data.positionLevelOld ?? "";
|
|
responseData.value.positionNumberOld = data.positionNumberOld ?? "";
|
|
responseData.value.positionTypeOld = data.positionTypeOld ?? "";
|
|
responseData.value.reason = data.reason ?? "";
|
|
responseData.value.status = data.status ?? "";
|
|
responseData.value.fullname = `${data.prefix ?? "-"}${data.firstname ?? "-"} ${data.lastname ?? "-"}`;
|
|
organizationPositionOld.value = data.organizationPositionOld ?? "";
|
|
positionTypeOld.value = data.positionTypeOld ?? "";
|
|
positionLevelOld.value = data.positionLevelOld ?? "";
|
|
posNo.value = data.positionNumberOld ?? "";
|
|
salary.value = data.amountOld ?? "";
|
|
date.value = data.positionDate !== null ? new Date(data.positionDate) : null;
|
|
reason.value = data.reason ?? "";
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
edit.value = false;
|
|
});
|
|
};
|
|
|
|
//-----(edit)-----//
|
|
const clickEdit = async () => {
|
|
await myform.value.validate().then(async (success: boolean) => {
|
|
if (success) {
|
|
dialogConfirm($q, () => saveOther());
|
|
} else {
|
|
}
|
|
});
|
|
};
|
|
//-----(update)-----//
|
|
const saveOther = async () => {
|
|
let data = {
|
|
citizenId: Otherdata.value.citizenId,
|
|
prefixId: Otherdata.value.prefixId,
|
|
firstname: Otherdata.value.firstname,
|
|
lastname: Otherdata.value.lastname,
|
|
reason: reason.value,
|
|
organizationPositionOld: organizationPositionOld.value,
|
|
positionDate: date.value,
|
|
positionTypeOld: positionTypeOld.value,
|
|
positionLevelOld: positionLevelOld.value,
|
|
positionNumberOld: posNo.value,
|
|
amountOld: Number(salary.value),
|
|
};
|
|
await http
|
|
.put(config.API.otherByid(paramsId.toString()), data)
|
|
.then(() => {
|
|
success($q, "แก้ไข้ข้อมูลสำเร็จ");
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(async () => {
|
|
await fecthOther();
|
|
});
|
|
};
|
|
const getClass = (val: boolean) => {
|
|
return {
|
|
"full-width inputgreen cursor-pointer": val,
|
|
"full-width cursor-pointer": !val,
|
|
};
|
|
};
|
|
onMounted(async () => {
|
|
if (keycloak.tokenParsed != null) {
|
|
roleAdmin.value = await keycloak.tokenParsed.role.includes("placement1");
|
|
}
|
|
await fecthOther();
|
|
});
|
|
</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(`/other`)" />
|
|
รายละเอียดรายการอื่นๆ {{ responseData.fullname }}
|
|
</div>
|
|
<q-card bordered class="row col-12 text-dark">
|
|
<div class="bg-grey-1 q-pa-sm col-12 row items-center text-primary">
|
|
<div class="q-pl-sm text-weight-bold text-subtitle2">
|
|
{{ responseData.fullname }}
|
|
</div>
|
|
<q-space />
|
|
<q-btn outline color="blue" dense icon-right="mdi-open-in-new" class="q-px-sm"
|
|
label="ดูข้อมูลทะเบียนประวัติ" @click="router.push(`/registry/${responseData.profileId}`)" />
|
|
</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-3 col-sm-2 col-md-1 row">
|
|
<q-img :src="avatar" v-if="avatar !== ''" />
|
|
<q-img src="@/assets/avatar_user.jpg" v-else />
|
|
</div>
|
|
<div class="col-xs-6 col-sm-3 row">
|
|
<div class="col-12 q-pl-md">
|
|
<div class="col-12 text-top">ตำแหน่งในสายงาน</div>
|
|
<div class="col-12 text-detail">
|
|
{{ title.positionTypeOld }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-3 row">
|
|
<div class="col-12">
|
|
<div class="col-12 text-top">ระดับ</div>
|
|
<div class="col-12 text-detail">
|
|
{{ title.positionLevelOld }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-3 row">
|
|
<div class="col-12">
|
|
<div class="col-12 text-top">สังกัด</div>
|
|
<div class="col-12 text-detail">
|
|
{{ title.organizationPositionOld }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</q-card>
|
|
|
|
<q-card bordered class="row col-12 text-dark q-mt-sm">
|
|
<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="
|
|
responseData.status !== 'DONE' && responseData.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 color="public" dense class="q-px-sm" label="บันทึก"
|
|
style="width: 80px" @click="clickEdit" />
|
|
<q-btn outline color="red" dense class="q-px-sm" label="ยกเลิก"
|
|
style="width: 80px" @click="(edit = !edit), fecthOther()" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12"><q-separator /></div>
|
|
<q-form ref="myform">
|
|
<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 text-grey">
|
|
ตำแหน่งและหน่วยงานเดิม
|
|
</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">
|
|
<CurruncyInput v-model="salary" label="เงินเดือน" :edit="edit"
|
|
:rules="[(val:number) => !!val || `${'กรุณากรอกเงินเดือน'}`]" />
|
|
</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 lazy-rules :readonly="!edit"
|
|
:borderless="!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" :rules="[(val) => !!val || `${'กรุณากรอกหมายเหตุ '}`]"
|
|
hide-bottom-space :label="`${'หมายเหตุ '}`" type="textarea" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</q-form>
|
|
</q-card>
|
|
</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>
|