2023-08-22 15:22:23 +07:00
|
|
|
<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";
|
2023-08-31 14:37:40 +07:00
|
|
|
import { identity } from "@fullcalendar/core/internal";
|
2023-08-22 15:22:23 +07:00
|
|
|
|
|
|
|
|
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",
|
2023-08-22 15:22:23 +07:00
|
|
|
align: "left",
|
2023-08-24 17:06:18 +07:00
|
|
|
label: "สาเหตุที่ลาออก",
|
2023-08-22 15:22:23 +07:00
|
|
|
sortable: true,
|
2023-08-24 17:06:18 +07:00
|
|
|
field: "realReason",
|
2023-08-22 15:22:23 +07:00
|
|
|
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",
|
2023-08-22 15:22:23 +07:00
|
|
|
align: "left",
|
2023-08-24 17:06:18 +07:00
|
|
|
label: "ปัจจัยที่ช่วยเปลี่ยนใจไม่อยากลาออก",
|
2023-08-22 15:22:23 +07:00
|
|
|
sortable: true,
|
2023-08-24 17:06:18 +07:00
|
|
|
field: "notExitFactor",
|
2023-08-22 15:22:23 +07:00
|
|
|
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",
|
2023-08-22 15:22:23 +07:00
|
|
|
align: "left",
|
2023-08-24 17:06:18 +07:00
|
|
|
label: "อนาคตกลับจะมาร่วมงานหรือไม่",
|
2023-08-22 15:22:23 +07:00
|
|
|
sortable: true,
|
2023-08-24 17:06:18 +07:00
|
|
|
field: "futureWork",
|
2023-08-22 15:22:23 +07:00
|
|
|
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",
|
2023-08-22 15:22:23 +07:00
|
|
|
align: "left",
|
2023-08-24 17:06:18 +07:00
|
|
|
label: "เหตุผลที่อยากกลับมาร่วมงาน",
|
2023-08-22 15:22:23 +07:00
|
|
|
sortable: true,
|
2023-08-24 17:06:18 +07:00
|
|
|
field: "futureWorkReason",
|
2023-08-22 15:22:23 +07:00
|
|
|
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",
|
2023-08-22 15:22:23 +07:00
|
|
|
align: "left",
|
2023-08-24 17:06:18 +07:00
|
|
|
label: "มีงานใหม่หรือไม่",
|
2023-08-22 15:22:23 +07:00
|
|
|
sortable: true,
|
2023-08-24 17:06:18 +07:00
|
|
|
field: "havejob",
|
2023-08-22 15:22:23 +07:00
|
|
|
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",
|
2023-08-22 15:22:23 +07:00
|
|
|
align: "left",
|
2023-08-24 17:06:18 +07:00
|
|
|
label: "เหตุผลที่มีงานใหม่",
|
2023-08-22 15:22:23 +07:00
|
|
|
sortable: true,
|
2023-08-24 17:06:18 +07:00
|
|
|
field: "havejobReason",
|
2023-08-22 15:22:23 +07:00
|
|
|
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",
|
2023-08-22 15:22:23 +07:00
|
|
|
align: "left",
|
2023-08-24 17:06:18 +07:00
|
|
|
label: "วันที่สร้าง",
|
2023-08-22 15:22:23 +07:00
|
|
|
sortable: true,
|
2023-08-24 17:06:18 +07:00
|
|
|
field: "datetext",
|
2023-08-22 15:22:23 +07:00
|
|
|
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);
|
2023-08-31 14:37:40 +07:00
|
|
|
const id = ref<string>("");
|
2023-08-22 15:22:23 +07:00
|
|
|
const filters = ref<ResponseItems[]>([]);
|
|
|
|
|
const rows2 = ref<ResponseItems[]>([]);
|
2023-08-24 17:06:18 +07:00
|
|
|
const columns2 = ref<QTableProps["columns"]>([]);
|
2023-08-22 15:22:23 +07:00
|
|
|
const visibleColumns2 = ref<string[]>([
|
|
|
|
|
"no",
|
|
|
|
|
"prefix",
|
|
|
|
|
"fullname",
|
2023-08-24 17:06:18 +07:00
|
|
|
"futureWork",
|
|
|
|
|
"futureWorkReason",
|
|
|
|
|
"havejob",
|
|
|
|
|
"havejobReason",
|
2023-08-22 15:22:23 +07:00
|
|
|
"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();
|
|
|
|
|
};
|
|
|
|
|
|
2023-08-31 14:37:40 +07:00
|
|
|
const openModalCalendar = (rows:any) => {
|
2023-08-24 17:06:18 +07:00
|
|
|
openModal();
|
|
|
|
|
dateBreak.value = null;
|
2023-08-31 14:37:40 +07:00
|
|
|
id.value= rows.id;
|
2023-08-24 17:06:18 +07:00
|
|
|
};
|
|
|
|
|
|
2023-08-22 15:22:23 +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);
|
2023-08-22 15:22:23 +07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
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 ?? "",
|
2023-08-22 15:22:23 +07:00
|
|
|
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 ?? "",
|
2023-08-22 15:22:23 +07:00
|
|
|
status: r.status ?? "",
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
rows.value = list;
|
|
|
|
|
filters.value = list;
|
|
|
|
|
})
|
|
|
|
|
.catch((e: any) => {
|
|
|
|
|
messageError($q, e);
|
|
|
|
|
})
|
|
|
|
|
.finally(() => {
|
|
|
|
|
hideLoader();
|
|
|
|
|
});
|
|
|
|
|
};
|
2023-08-31 14:37:40 +07:00
|
|
|
const saveAppoint = async () =>{
|
|
|
|
|
const body = {
|
|
|
|
|
appointDate : dateBreak.value
|
2023-08-22 15:22:23 +07:00
|
|
|
};
|
|
|
|
|
showLoader();
|
|
|
|
|
await http
|
2023-08-31 14:37:40 +07:00
|
|
|
.put(config.API.AppointInterview(id.value),body)
|
2023-08-22 15:22:23 +07:00
|
|
|
.then((res: any) => {
|
|
|
|
|
success($q, "ส่งไปออกคำสั่งลาออกสำเร็จ");
|
|
|
|
|
closeModal();
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
messageError($q, e);
|
|
|
|
|
})
|
|
|
|
|
.finally(async () => {
|
|
|
|
|
await fecthlist();
|
|
|
|
|
hideLoader();
|
|
|
|
|
});
|
2023-08-31 14:37:40 +07:00
|
|
|
}
|
|
|
|
|
// 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();
|
|
|
|
|
// });
|
|
|
|
|
// };
|
2023-08-22 15:22:23 +07:00
|
|
|
</script>
|
2023-08-31 14:37:40 +07:00
|
|
|
<template v-slot:body="props">
|
2023-08-22 15:22:23 +07:00
|
|
|
<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 />
|
2023-08-22 15:22:23 +07:00
|
|
|
</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}`)
|
|
|
|
|
"
|
|
|
|
|
>
|
2023-08-22 15:22:23 +07:00
|
|
|
{{ 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 }}
|
2023-08-22 15:22:23 +07:00
|
|
|
</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 }}
|
2023-08-22 15:22:23 +07:00
|
|
|
</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 ? "ใช่" : "ไม่" }}
|
2023-08-22 15:22:23 +07:00
|
|
|
</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 }}
|
2023-08-22 15:22:23 +07:00
|
|
|
</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 ? "ใช่" : "ไม่" }}
|
2023-08-22 15:22:23 +07:00
|
|
|
</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}`)
|
|
|
|
|
"
|
|
|
|
|
>
|
2023-08-22 15:22:23 +07:00
|
|
|
<div class="table_ellipsis">
|
2023-08-24 17:06:18 +07:00
|
|
|
{{ props.row.havejobReason }}
|
2023-08-22 15:22:23 +07:00
|
|
|
</div>
|
|
|
|
|
</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
|
|
|
|
|
icon="mdi-calendar"
|
|
|
|
|
size="12px"
|
|
|
|
|
color="blue-7"
|
|
|
|
|
flat
|
|
|
|
|
round
|
|
|
|
|
dense
|
2023-08-31 14:37:40 +07:00
|
|
|
@click="openModalCalendar(props.row)"
|
2023-08-24 17:06:18 +07:00
|
|
|
>
|
|
|
|
|
<q-tooltip>วันนัดหมายเพื่อทําการสัมภาษณ์การลาออก</q-tooltip>
|
|
|
|
|
</q-btn>
|
2023-08-22 15:22:23 +07:00
|
|
|
</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 }}
|
2023-08-22 15:22:23 +07:00
|
|
|
</q-td>
|
2023-08-24 17:06:18 +07:00
|
|
|
<q-td key="havejob" :props="props">
|
|
|
|
|
{{ props.row.havejob }}
|
2023-08-22 15:22:23 +07:00
|
|
|
</q-td>
|
|
|
|
|
|
2023-08-24 17:06:18 +07:00
|
|
|
<q-td key="havejobReason" :props="props">
|
2023-08-22 15:22:23 +07:00
|
|
|
<div class="table_ellipsis">
|
2023-08-24 17:06:18 +07:00
|
|
|
{{ props.row.havejobReason }}
|
2023-08-22 15:22:23 +07:00
|
|
|
</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
|
|
|
|
2023-08-31 14:37:40 +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 />
|
2023-08-31 14:37:40 +07:00
|
|
|
<!-- <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>
|
2023-08-22 15:22:23 +07:00
|
|
|
</template>
|
|
|
|
|
<style scoped lang="scss"></style>
|