hrms-mgt/src/modules/06_retirement/views/04_exitInterview.vue

530 lines
17 KiB
Vue
Raw Normal View History

<script setup lang="ts">
2023-09-15 15:42:23 +07:00
import { ref, onMounted } from "vue";
2023-09-07 16:49:14 +07:00
import { useQuasar, QForm } from "quasar";
import { useRouter } from "vue-router";
2024-09-18 15:18:57 +07:00
import http from "@/plugins/http";
import config from "@/app.config";
2024-09-18 15:18:57 +07:00
import { useCounterMixin } from "@/stores/mixin";
import { checkPermission } from "@/utils/permissions";
import type { QTableProps } from "quasar";
2023-08-24 17:06:18 +07:00
import type { ResponseItems } from "@/modules/06_retirement/interface/response/exitInterview";
import DialogFooter from "@/modules/05_placement/components/PersonalList/DialogFooter.vue";
2024-06-12 13:12:12 +07:00
2024-09-18 15:18:57 +07:00
import DialogHeader from "@/components/DialogHeader.vue";
2024-08-13 11:22:07 +07:00
/** use */
const $q = useQuasar(); //ใช้ noti quasar
const router = useRouter();
const mixin = useCounterMixin();
2023-09-07 16:49:14 +07:00
const myForm = ref<QForm>();
const {
messageError,
date2Thai,
showLoader,
hideLoader,
success,
dialogConfirm,
onSearchDataTable,
2025-10-17 17:22:40 +07:00
convertDateToAPI
2023-09-07 16:49:14 +07:00
} = mixin;
/** คอลัมน์ */
const rows = ref<ResponseItems[]>([]);
const rowsData = ref<ResponseItems[]>([]);
const columns = ref<QTableProps["columns"]>([
{
name: "no",
align: "left",
label: "ลำดับ",
sortable: false,
field: "no",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
2023-09-19 17:42:17 +07:00
{
name: "fullname",
align: "left",
label: "ชื่อ-นามสกุล",
sortable: true,
field: "fullname",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
2023-08-24 17:06:18 +07:00
name: "realReason",
align: "left",
2023-08-24 17:06:18 +07:00
label: "สาเหตุที่ลาออก",
sortable: true,
2023-08-24 17:06:18 +07:00
field: "realReason",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
2023-08-24 17:06:18 +07:00
name: "notExitFactor",
align: "left",
2023-08-24 17:06:18 +07:00
label: "ปัจจัยที่ช่วยเปลี่ยนใจไม่อยากลาออก",
sortable: true,
2023-08-24 17:06:18 +07:00
field: "notExitFactor",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
2023-08-24 17:06:18 +07:00
name: "futureWork",
align: "left",
2023-08-24 17:06:18 +07:00
label: "อนาคตกลับจะมาร่วมงานหรือไม่",
sortable: true,
2023-08-24 17:06:18 +07:00
field: "futureWork",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
2023-08-24 17:06:18 +07:00
name: "futureWorkReason",
align: "left",
2023-08-24 17:06:18 +07:00
label: "เหตุผลที่อยากกลับมาร่วมงาน",
sortable: true,
2023-08-24 17:06:18 +07:00
field: "futureWorkReason",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
2023-08-24 17:06:18 +07:00
name: "havejob",
align: "left",
2023-08-24 17:06:18 +07:00
label: "มีงานใหม่หรือไม่",
sortable: true,
2023-08-24 17:06:18 +07:00
field: "havejob",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
2023-08-24 17:06:18 +07:00
name: "havejobReason",
align: "left",
2023-08-24 17:06:18 +07:00
label: "เหตุผลที่มีงานใหม่",
sortable: true,
2023-08-24 17:06:18 +07:00
field: "havejobReason",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "appointDate",
align: "left",
label: "วันนัดหมายเพื่อสัมภาษณ์",
sortable: true,
field: "appointDate",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
2023-08-24 17:06:18 +07:00
name: "datetext",
align: "left",
2023-08-24 17:06:18 +07:00
label: "วันที่สร้าง",
sortable: true,
2023-08-24 17:06:18 +07:00
field: "datetext",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
]);
/** คอลัมน์ที่แสดง */
2023-08-24 17:06:18 +07:00
const visibleColumns = ref<string[]>([]);
/**
* วแปร
*/
2023-08-24 17:06:18 +07:00
const dateBreak = ref<Date | null>(null);
2023-09-14 17:11:41 +07:00
const daterow = ref<string | null>("");
const id = ref<string>("");
const filters = ref<ResponseItems[]>([]);
const modal = ref<boolean>(false);
const filterKeyword = ref<string>("");
const filterRef = ref<any>(null);
2023-09-19 17:42:17 +07:00
//นำข้อมูลจาก API มาแสดง
2024-09-18 15:18:57 +07:00
async function fecthlist() {
showLoader();
await http
.get(config.API.listExitInterview())
.then(async (res) => {
const data = await res.data.result;
let list: ResponseItems[] = [];
data.map((r: ResponseItems) => {
list.push({
2023-08-24 17:06:18 +07:00
datetext: r.createdAt !== null ? date2Thai(r.createdAt) : "-",
2023-09-19 17:42:17 +07:00
fullname: r.fullname ?? "",
2023-08-24 17:06:18 +07:00
createdAt: new Date(r.createdAt),
futureWork: !!r.futureWork,
futureWorkReason: r.futureWorkReason ?? "-",
2023-08-24 17:06:18 +07:00
havejob: !!r.havejob,
havejobReason: r.havejobReason ?? "-",
id: r.id ?? "",
2023-08-24 17:06:18 +07:00
lastUpdatedAt: new Date(r.lastUpdatedAt),
notExitFactor: r.notExitFactor ?? "-",
realReason: r.realReason ? r.realReason : "-",
2023-08-24 17:06:18 +07:00
suggestFriends: !!r.suggestFriends,
suggestFriendsReason: r.suggestFriendsReason ?? "-",
suggestion: r.suggestion ?? "-",
status: r.status ?? "-",
2023-09-07 16:49:14 +07:00
appointDate: date2Thai(r.appointDate),
});
});
rows.value = list;
rowsData.value = list;
filters.value = list;
})
.catch((e: any) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
2024-09-18 15:18:57 +07:00
}
2023-09-19 17:42:17 +07:00
2023-09-22 11:48:24 +07:00
//กําหนดวันนัดหมายเพื่อทําการสัมภาษณ์การลาออก
2024-09-18 15:18:57 +07:00
async function saveAppoint() {
2023-09-07 16:49:14 +07:00
await myForm.value!.validate().then(async (result: boolean) => {
if (result) {
dialogConfirm($q, async () => {
const body = {
2025-10-17 17:22:40 +07:00
appointDate: convertDateToAPI(dateBreak.value),
2023-09-07 16:49:14 +07:00
};
showLoader();
await http
.put(config.API.AppointInterview(id.value), body)
.then(async () => {
await fecthlist();
2023-09-22 11:48:24 +07:00
success($q, "วันนัดหมายเพื่อทําการสัมภาษณ์การลาออกสำเร็จ");
2023-09-07 16:49:14 +07:00
closeModal();
})
.catch((e) => {
messageError($q, e);
})
.finally(async () => {
hideLoader();
});
});
}
});
2024-09-18 15:18:57 +07:00
}
2023-09-24 09:14:17 +07:00
/**
* งก validate DATE ไทย
* @param thaiDate นทไทย
*/
2024-09-18 15:18:57 +07:00
function validationDate(thaiDate: string | null) {
2023-09-14 17:11:41 +07:00
if (thaiDate && daterow.value) {
let a = convertThaiDateToNumeric(thaiDate);
let b = daterow.value;
if (a) {
return a > b;
}
}
2024-09-18 15:18:57 +07:00
}
2023-09-19 17:42:17 +07:00
//แปลงเดือนจากตัวเลขเป็นภาษาอ่าน
2024-09-18 15:18:57 +07:00
function convertThaiDateToNumeric(thaiDate: string) {
2023-09-14 17:11:41 +07:00
const parts = thaiDate.split(" ");
if (parts.length !== 3) return null;
const [day, month, year] = parts;
const monthMap: any = {
"ม.ค.": "01",
"ก.พ.": "02",
"มี.ค.": "03",
"เม.ย.": "04",
"พ.ค.": "05",
"มิ.ย.": "06",
"ก.ค.": "07",
"ส.ค.": "08",
"ก.ย.": "09",
"ต.ค.": "10",
"พ.ย.": "11",
"ธ.ค.": "12",
};
if (!(month in monthMap)) return null;
const numericDate = `${year}${monthMap[month]}${day}`;
return numericDate;
2024-09-18 15:18:57 +07:00
}
/**
* modal Setting
*/
2023-09-15 15:42:23 +07:00
const openModal = () => (modal.value = true);
const closeModal = () => (modal.value = false);
2024-09-18 15:18:57 +07:00
function resetFilter() {
2023-09-15 15:42:23 +07:00
filterKeyword.value = "";
filterRef.value.focus();
2024-09-18 15:18:57 +07:00
}
function openModalCalendar(rows: any) {
2023-09-15 15:42:23 +07:00
openModal();
dateBreak.value = null;
id.value = rows.id;
daterow.value = convertThaiDateToNumeric(rows.datetext);
2024-09-18 15:18:57 +07:00
}
function onSearch() {
rows.value = onSearchDataTable(
filterKeyword.value,
rowsData.value,
columns.value ? columns.value : []
);
}
2024-09-18 15:18:57 +07:00
/** HOOK */
onMounted(async () => {
await fecthlist();
if (columns.value) {
visibleColumns.value = columns.value.map((r: any) => r.name);
}
});
</script>
<template v-slot:body="props">
<div class="toptitle text-dark col-12 row items-center">
รายการ Exit interview
</div>
<q-card flat bordered class="col-12 q-mt-sm">
<q-separator />
<div class="col-12 row q-pa-md">
<div class="row col-12 q-col-gutter-sm">
<div class="row col-12">
<div>
<q-btn
2024-08-13 11:22:07 +07:00
v-if="
checkPermission($route)?.attrIsGet &&
checkPermission($route)?.attrIsUpdate &&
checkPermission($route)?.attrOwnership == 'OWNER'
2024-08-13 11:22:07 +07:00
"
color="blue-9"
icon="mdi-square-edit-outline"
outline
2024-08-13 09:45:59 +07:00
@click="$router.push('/retirement/exit-interview/edit-question')"
><span class="q-pl-sm">แกไขคำถาม</span></q-btn
>
</div>
<q-space />
<div class="row q-col-gutter-sm">
<q-input
standout
dense
v-model="filterKeyword"
ref="filterRef"
outlined
placeholder="ค้นหา"
2025-05-23 11:47:17 +07:00
@keydown.enter.prevent="onSearch"
>
<template v-slot:append>
<q-icon name="search" />
</template>
</q-input>
<q-select
v-model="visibleColumns"
multiple
outlined
dense
options-dense
:display-value="$q.lang.table.columns"
emit-value
map-options
:options="columns"
option-value="name"
style="min-width: 140px"
/>
</div>
</div>
<div class="col-12">
<d-table
:columns="columns"
:rows="rows"
row-key="id"
:visible-columns="visibleColumns"
>
<template v-slot:header="props">
<q-tr :props="props">
2024-07-24 16:37:04 +07:00
<q-th auto-width />
<q-th v-for="col in props.cols" :key="col.name" :props="props">
<span class="text-weight-medium">{{ col.label }}</span>
</q-th>
</q-tr>
</template>
<template v-slot:body="props">
2024-08-13 11:22:07 +07:00
<q-tr :props="props">
2024-07-24 16:37:04 +07:00
<q-td auto-width>
<q-btn
2024-08-13 11:22:07 +07:00
flat
dense
round
v-if="checkPermission($route)?.attrIsGet"
color="info"
icon="mdi-eye"
@click="
router.push(
`/retirement/exit-interview/questionnair-detail/${props.row.id}`
)
"
>
<q-tooltip>รายละเอยด</q-tooltip>
</q-btn>
<q-btn
v-if="
checkPermission($route)?.attrIsGet &&
checkPermission($route)?.attrIsUpdate
"
2024-08-13 11:22:07 +07:00
flat
dense
round
color="edit"
icon="edit"
@click="
router.push(
`/retirement/exit-interview/questionnair/${props.row.id}`
)
"
>
<q-tooltip>แกไขขอม</q-tooltip>
</q-btn>
2024-08-13 11:22:07 +07:00
<q-btn
v-if="
checkPermission($route)?.attrIsGet &&
checkPermission($route)?.attrIsUpdate
"
2024-07-24 16:37:04 +07:00
icon="mdi-calendar"
:color="!props.row.appointDate ? 'blue-7' : 'grey-5'"
:disable="props.row.appointDate !== ''"
2024-07-24 16:37:04 +07:00
flat
round
dense
@click="openModalCalendar(props.row)"
>
<q-tooltip>นนดหมายเพอทาการสมภาษณการลาออก</q-tooltip>
</q-btn>
</q-td>
2024-08-13 11:22:07 +07:00
<q-td key="no" :props="props">
{{ props.rowIndex + 1 }}
</q-td>
<q-td key="fullname" :props="props">
2024-09-10 16:04:23 +07:00
{{ props.row.fullname ? props.row.fullname : "-" }}
2023-09-19 17:42:17 +07:00
</q-td>
<q-td key="realReason" :props="props">
2024-09-10 16:04:23 +07:00
{{ props.row.realReason ? props.row.realReason : "-" }}
</q-td>
<q-td key="notExitFactor" :props="props">
2024-09-10 16:04:23 +07:00
{{ props.row.notExitFactor ? props.row.notExitFactor : "-" }}
</q-td>
<q-td key="futureWork" :props="props">
2023-08-24 17:06:18 +07:00
{{ props.row.futureWork ? "ใช่" : "ไม่" }}
</q-td>
<q-td key="futureWorkReason" :props="props">
2024-09-10 16:04:23 +07:00
{{
props.row.futureWorkReason
? props.row.futureWorkReason
: "-"
}}
</q-td>
<q-td key="havejob" :props="props">
2023-08-24 17:06:18 +07:00
{{ props.row.havejob ? "ใช่" : "ไม่" }}
</q-td>
<q-td key="havejobReason" :props="props">
<div class="table_ellipsis">
2024-09-10 16:04:23 +07:00
{{
props.row.havejobReason ? props.row.havejobReason : "-"
}}
</div>
</q-td>
<q-td key="appointDate" :props="props">
2024-09-18 15:18:57 +07:00
{{ props.row.appointDate ? props.row.appointDate : "-" }}
</q-td>
<q-td key="datetext" :props="props">
2024-09-10 16:04:23 +07:00
{{ props.row.datetext ? props.row.datetext : "-" }}
2023-08-24 17:06:18 +07:00
</q-td>
</q-tr>
</template>
</d-table>
</div>
</div>
</div>
</q-card>
2023-09-19 17:42:17 +07:00
<!-- dialog กำหนดวนหนดหมายสมภาษณ -->
2023-09-07 16:49:14 +07:00
<q-dialog v-model="modal" persistent>
2023-08-24 17:06:18 +07:00
<q-card style="width: 800px">
2023-09-07 16:49:14 +07:00
<q-form ref="myForm">
<DialogHeader
2024-06-12 13:12:12 +07:00
:tittle="'กําหนดวันนัดหมายเพื่อทําการสัมภาษณ์การลาออก'"
:close="closeModal"
/>
2023-08-24 17:06:18 +07:00
<q-separator />
2024-03-28 16:29:44 +07:00
<q-card-section class="q-p-sm q-gutter-md">
2023-08-24 17:06:18 +07:00
<div class="col-xs-12 col-sm-12 col-md-12">
<datepicker
menu-class-name="modalfix"
v-model="dateBreak"
:locale="'th'"
autoApply
:enableTimePicker="false"
week-start="0"
>
2023-08-24 17:06:18 +07:00
<template #year="{ year }">{{ year + 543 }}</template>
<template #year-overlay-value="{ value }">{{
parseInt(value + 543)
}}</template>
<template #trigger>
<q-input
outlined
dense
class="inputgreen"
:model-value="
dateBreak !== null ? date2Thai(dateBreak) : null
"
hide-bottom-space
:label="`${' วันนัดหมายเพื่อทําการสัมภาษณ์การลาออก'}`"
:rules="[
2024-10-25 11:07:48 +07:00
(val:string) => !!val || `${'กรุณาเลือกลงวันที่'}`,
(val:string) =>
validationDate(val) ||
`${'วันที่นัดหมายต้องมากกว่าวันที่สร้าง'}`,
]"
>
2023-08-24 17:06:18 +07:00
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
2023-08-24 17:06:18 +07:00
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
</q-card-section>
<q-separator />
2023-09-07 16:49:14 +07:00
<DialogFooter :editvisible="true" :save="saveAppoint" />
2023-08-24 17:06:18 +07:00
</q-form>
</q-card>
</q-dialog>
</template>
<style scoped lang="scss"></style>