hrms-mgt/src/modules/06_retirement/components/ExitInterview/exitMain.vue

633 lines
20 KiB
Vue
Raw Normal View History

<script setup lang="ts">
import { ref, onMounted, computed } from "vue";
import { useQuasar } from "quasar";
import { useRouter } from "vue-router";
import { useCounterMixin } from "@/stores/mixin";
import { useRetirementDataStore } from "@/modules/06_retirement/store";
import http from "@/plugins/http";
import config from "@/app.config";
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";
import DialogHeader from "@/modules/05_placement/components/PersonalList/DialogHeader.vue";
import { identity } from "@fullcalendar/core/internal";
const $q = useQuasar(); //ใช้ noti quasar
const router = useRouter();
const mixin = useCounterMixin();
const RetirementData = useRetirementDataStore();
const { messageError, date2Thai, showLoader, hideLoader, success } = mixin;
const { statusText } = RetirementData;
const rows = ref<ResponseItems[]>([]);
const columns = ref<QTableProps["columns"]>([
{
name: "no",
align: "left",
label: "ลำดับ",
sortable: true,
field: "no",
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[]>([]);
const dateBreak = ref<Date | null>(null);
const id = ref<string>("");
const filters = ref<ResponseItems[]>([]);
const rows2 = ref<ResponseItems[]>([]);
2023-08-24 17:06:18 +07:00
const columns2 = ref<QTableProps["columns"]>([]);
const visibleColumns2 = ref<string[]>([
"no",
"prefix",
"fullname",
2023-08-24 17:06:18 +07:00
"futureWork",
"futureWorkReason",
"havejob",
"havejobReason",
"statustext",
]);
const modal = ref<boolean>(false);
const filterKeyword2 = ref<string>("");
//ค้นหา คอลัมน์ คอลัมน์ที่แสดง
const filterKeyword = ref<string>("");
const filterRef = ref<any>(null);
const openModal = () => (modal.value = true);
const closeModal = () => (modal.value = false);
const selected = ref<ResponseItems[]>([]);
const checkSelected = computed(() => {
if (selected.value.length === 0) {
return true;
}
});
const resetFilter = () => {
filterKeyword.value = "";
filterRef.value.focus();
};
const openModalCalendar = (rows:any) => {
2023-08-24 17:06:18 +07:00
openModal();
dateBreak.value = null;
id.value= rows.id;
2023-08-24 17:06:18 +07:00
};
const openModalOrder = () => {
openModal();
const row = filters.value.filter(
(r: ResponseItems) =>
r.status == "WAITTING" || r.status == "PENDING" || r.status == "APPROVE"
);
rows2.value = row;
};
onMounted(async () => {
await fecthlist();
2023-08-24 17:06:18 +07:00
visibleColumns.value = columns.value.map((r: any) => r.name);
});
const fecthlist = async () => {
showLoader();
await http
.get(config.API.listExitInterview())
.then((res: any) => {
const data = 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) : "-",
createdAt: new Date(r.createdAt),
futureWork: !!r.futureWork,
futureWorkReason: r.futureWorkReason ?? "",
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 ?? "",
suggestFriends: !!r.suggestFriends,
suggestFriendsReason: r.suggestFriendsReason ?? "",
suggestion: r.suggestion ?? "",
status: r.status ?? "",
appointDate: date2Thai(r.appointDate)
});
});
rows.value = list;
filters.value = list;
})
.catch((e: any) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
};
const saveAppoint = async () =>{
const body = {
appointDate : dateBreak.value
};
showLoader();
await http
.put(config.API.AppointInterview(id.value),body)
.then((res: any) => {
success($q, "ส่งไปออกคำสั่งลาออกสำเร็จ");
closeModal();
})
.catch((e) => {
messageError($q, e);
})
.finally(async () => {
await fecthlist();
hideLoader();
});
}
// const saveOrder = async () => {
// const id = selected.value.map((r) => r.id);
// const body = {
// id,
// };
// showLoader();
// await http
// .post(config.API.ExitInterviewReport, body)
// .then((res: any) => {
// // const data = res.data.result;
// // console.log(data);
// success($q, "ส่งไปออกคำสั่งลาออกสำเร็จ");
// closeModal();
// })
// .catch((e) => {
// messageError($q, e);
// })
// .finally(async () => {
// await fecthlist();
// hideLoader();
// });
// };
</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">
<div class="row col-12 q-col-gutter-sm">
<!-- <q-btn
@click="openModalOrder"
size="14px"
flat
round
color="add"
icon="mdi-account-arrow-right"
>
<q-tooltip>งไปออกคำสงลาออก</q-tooltip>
</q-btn> -->
<q-space />
<q-input
class="col-xs-12 col-sm-3 col-md-2"
standout
dense
v-model="filterKeyword"
ref="filterRef"
outlined
debounce="300"
placeholder="ค้นหา"
>
<template v-slot:append>
<q-icon v-if="filterKeyword == ''" name="search" />
<q-icon
v-if="filterKeyword !== ''"
name="clear"
class="cursor-pointer"
@click="resetFilter"
/>
</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"
options-cover
style="min-width: 150px"
class="col-xs-12 col-sm-3 col-md-2"
/>
</div>
<div class="col-12 q-pt-sm">
<d-table
:columns="columns"
:rows="rows"
:filter="filterKeyword"
row-key="id"
:visible-columns="visibleColumns"
>
<template v-slot:header="props">
<q-tr :props="props">
<q-th v-for="col in props.cols" :key="col.name" :props="props">
<span class="text-weight-medium">{{ col.label }}</span>
</q-th>
2023-08-24 17:06:18 +07:00
<q-th auto-width />
</q-tr>
</template>
<template v-slot:body="props">
2023-08-24 17:06:18 +07:00
<q-tr :props="props" class="cursor-pointer">
2023-08-25 11:00:41 +07:00
<q-td
key="no"
:props="props"
@click="
router.push(`/exit-Interview/questionnair/${props.row.id}`)
"
>
{{ props.rowIndex + 1 }}
</q-td>
2023-08-25 11:00:41 +07:00
<q-td
key="realReason"
:props="props"
@click="
router.push(`/exit-Interview/questionnair/${props.row.id}`)
"
>
2023-08-24 17:06:18 +07:00
{{ props.row.realReason }}
</q-td>
2023-08-25 11:00:41 +07:00
<q-td
key="notExitFactor"
:props="props"
@click="
router.push(`/exit-Interview/questionnair/${props.row.id}`)
"
>
2023-08-24 17:06:18 +07:00
{{ props.row.notExitFactor }}
</q-td>
2023-08-25 11:00:41 +07:00
<q-td
key="futureWork"
:props="props"
@click="
router.push(`/exit-Interview/questionnair/${props.row.id}`)
"
>
2023-08-24 17:06:18 +07:00
{{ props.row.futureWork ? "ใช่" : "ไม่" }}
</q-td>
2023-08-25 11:00:41 +07:00
<q-td
key="futureWorkReason"
:props="props"
@click="
router.push(`/exit-Interview/questionnair/${props.row.id}`)
"
>
2023-08-24 17:06:18 +07:00
{{ props.row.futureWorkReason }}
</q-td>
2023-08-25 11:00:41 +07:00
<q-td
key="havejob"
:props="props"
@click="
router.push(`/exit-Interview/questionnair/${props.row.id}`)
"
>
2023-08-24 17:06:18 +07:00
{{ props.row.havejob ? "ใช่" : "ไม่" }}
</q-td>
2023-08-25 11:00:41 +07:00
<q-td
key="havejobReason"
:props="props"
@click="
router.push(`/exit-Interview/questionnair/${props.row.id}`)
"
>
<div class="table_ellipsis">
2023-08-24 17:06:18 +07:00
{{ props.row.havejobReason }}
</div>
</q-td>
<q-td
key="appointDate"
:props="props"
@click="
router.push(`/exit-Interview/questionnair/${props.row.id}`)
"
>
{{ props.row.appointDate == null ? "-":props.row.appointDate }}
</q-td>
2023-08-25 11:00:41 +07:00
<q-td
key="datetext"
:props="props"
@click="
router.push(`/exit-Interview/questionnair/${props.row.id}`)
"
>
2023-08-24 17:06:18 +07:00
{{ props.row.datetext }}
</q-td>
<q-td auto-width>
<q-btn
v-if="props.row.appointDate == null"
2023-08-24 17:06:18 +07:00
icon="mdi-calendar"
size="12px"
color="blue-7"
flat
round
dense
@click="openModalCalendar(props.row)"
2023-08-24 17:06:18 +07:00
>
<q-tooltip>นนดหมายเพอทาการสมภาษณการลาออก</q-tooltip>
</q-btn>
</q-td>
</q-tr>
</template>
</d-table>
</div>
</div>
</div>
</q-card>
<!-- <q-dialog v-model="modal">
<q-card style="width: 1200px; max-width: 80vw">
<DialogHeader title="ส่งไปออกคำสั่งโอนออก" :close="closeModal" />
<q-separator />
<q-card-section class="q-pt-none">
<div class="row justify-end">
<div class="col-5">
<q-toolbar style="padding: 0">
<q-input
borderless
outlined
dense
debounce="300"
v-model="filterKeyword2"
placeholder="ค้นหา"
style="width: 850px; max-width: auto"
>
<template v-slot:append>
<q-icon v-if="filterKeyword2 == ''" name="search" />
<q-icon
v-if="filterKeyword2 !== ''"
name="clear"
class="cursor-pointer"
@click="resetFilter"
/>
</template>
</q-input>
<q-select
v-model="visibleColumns2"
multiple
outlined
dense
options-dense
:display-value="$q.lang.table.columns"
emit-value
map-options
:options="columns2"
option-value="name"
options-cover
style="min-width: 150px"
class="gt-xs q-ml-sm"
/>
</q-toolbar>
</div>
</div>
<d-table
:columns="columns2"
:rows="rows2"
:filter="filterKeyword2"
row-key="id"
:visible-columns="visibleColumns2"
selection="multiple"
v-model:selected="selected"
>
<template v-slot:header-selection="scope">
<q-checkbox
keep-color
color="primary"
dense
v-model="scope.selected"
/>
</template>
<template v-slot:body="props">
<q-tr :props="props" class="cursor-pointer">
<q-td>
<q-checkbox
keep-color
color="primary"
dense
v-model="props.selected"
/>
</q-td>
<q-td key="no" :props="props">
{{ props.rowIndex + 1 }}
</q-td>
<q-td key="prefix" :props="props">
{{ props.row.prefix }}
</q-td>
<q-td key="fullname" :props="props">
{{ props.row.fullname }}
</q-td>
<q-td key="positionTypeOld" :props="props">
{{ props.row.positionTypeOld }}
</q-td>
2023-08-24 17:06:18 +07:00
<q-td key="futureWorkReason" :props="props">
{{ props.row.futureWorkReason }}
</q-td>
2023-08-24 17:06:18 +07:00
<q-td key="havejob" :props="props">
{{ props.row.havejob }}
</q-td>
2023-08-24 17:06:18 +07:00
<q-td key="havejobReason" :props="props">
<div class="table_ellipsis">
2023-08-24 17:06:18 +07:00
{{ props.row.havejobReason }}
</div>
</q-td>
<q-td key="statustext" :props="props">
{{ props.row.statustext }}
</q-td>
</q-tr>
</template>
</d-table>
</q-card-section>
<q-card-actions align="right" class="bg-white text-teal">
<q-btn
label="ส่งไปออกคำสั่ง"
@click="saveOrder"
:disable="checkSelected"
color="public"
/>
</q-card-actions>
</q-card>
</q-dialog> -->
2023-08-24 17:06:18 +07:00
<q-dialog v-model="modal" persistent >
2023-08-24 17:06:18 +07:00
<q-card style="width: 800px">
<q-form ref="myFormConfirm">
<DialogHeader
title="กําหนดวันนัดหมายเพื่อทําการสัมภาษณ์การลาออก"
:close="closeModal"
/>
<q-separator />
<q-card-section class="q-p-sm q-gutter-md">
<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"
>
<template #year="{ year }">{{ year + 543 }}</template>
<template #year-overlay-value="{ value }">{{
parseInt(value + 543)
}}</template>
<template #trigger>
<!-- :rules="[
(val) => !!val || `${'กรุณาเลือก วันสุดท้ายที่ยับยั้ง'}`,
]" -->
<q-input
outlined
dense
lazy-rules
:model-value="
dateBreak !== null ? date2Thai(dateBreak) : null
"
hide-bottom-space
:label="`${' วันนัดหมายเพื่อทําการสัมภาษณ์การลาออก'}`"
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
</q-card-section>
<q-separator />
<!-- <q-btn
flat
round
:color="'public'"
@click="saveAppoint"
icon="mdi-content-save-outline"
>
<q-tooltip>นท</q-tooltip>
</q-btn> -->
<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>