hrms-mgt/src/modules/03_recruiting/views/02_qualify/DisablePeriod.vue

811 lines
25 KiB
Vue
Raw Normal View History

2023-06-01 12:54:58 +07:00
<!-- page:ดการรอบการสอบ สรรหา -->
2024-09-17 15:56:06 +07:00
<script setup lang="ts">
import type { QTableProps } from "quasar";
import { onMounted, ref } from "vue";
import { useRouter } from "vue-router";
import { useQuasar } from "quasar";
2025-01-14 09:33:58 +07:00
import genReport from "@/plugins/genreport";
2023-08-04 10:04:59 +07:00
2024-09-17 15:56:06 +07:00
import http from "@/plugins/http";
import config from "@/app.config";
import { useCounterMixin } from "@/stores/mixin";
import { checkPermission } from "@/utils/permissions";
2023-08-04 10:04:59 +07:00
2024-09-17 15:56:06 +07:00
import type {
ResponseRecruitPeriod,
ResponseHistoryObject,
} from "@/modules/03_recruiting/interface/response/Period";
import type { Pagination } from "@/modules/03_recruiting/interface/index/Main";
2023-08-04 10:04:59 +07:00
2024-09-17 15:56:06 +07:00
import Table from "@/modules/03_recruiting/components/Table.vue";
import DialogHeader from "@/components/DialogHeader.vue";
import HistoryTable from "@/components/TableHistory.vue";
2023-08-04 10:04:59 +07:00
2024-09-17 15:56:06 +07:00
const $q = useQuasar(); // show dialog
const router = useRouter();
const mixin = useCounterMixin();
const { success, dateText, messageError, showLoader, hideLoader, date2Thai } =
mixin;
2023-08-04 10:04:59 +07:00
2024-09-17 15:56:06 +07:00
const name = ref<string>("");
const year = ref<number>(new Date().getFullYear() + 543);
const round = ref<number>(1);
const files = ref<any>(null);
const files_score = ref<any>(null);
const files_candidate = ref<any>(null);
const modalAdd = ref<boolean>(false);
const modalScore = ref<boolean>(false);
const modalCandidate = ref<boolean>(false);
const selected_row_id = ref<string>("");
const rowsHistory = ref<ResponseHistoryObject[]>([]); //select data history
const tittleHistory = ref<string>("ประวัติการนำเข้าข้อมูล"); //
const modalHistory = ref<boolean>(false); //modal ประวัติการแก้ไขข้อมูล
const rows = ref<any[]>([]);
const filter = ref<string>(""); //search data table
const filterHistory = ref<string>(""); //search data table
2024-09-17 15:56:06 +07:00
const textTittle = ref<string>("");
const textTittleScore = ref<string>("");
const textTittleCandidate = ref<string>("");
const initialPagination = ref<Pagination>({
rowsPerPage: 0,
});
const visibleColumns = ref<String[]>([
"no",
"name",
"round",
"year",
"examCount",
"scoreCount",
]);
2023-06-01 12:54:58 +07:00
const columns = ref<QTableProps["columns"]>([
2023-08-04 10:04:59 +07:00
{
name: "no",
align: "left",
label: "ลำดับ",
2023-09-20 14:28:32 +07:00
sortable: false,
2023-08-04 10:04:59 +07:00
field: "no",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "name",
align: "left",
label: "รอบคัดเลือกคนพิการ",
sortable: true,
field: "name",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "round",
align: "left",
label: "ครั้งที่",
sortable: true,
field: "round",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "year",
align: "left",
label: "ปีงบประมาณ",
sortable: true,
field: "year",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
format(val, row) {
return `${row.year + 543}`;
},
2023-08-04 10:04:59 +07:00
},
{
name: "examCount",
label: "จำนวนผู้สอบทั้งหมด",
align: "right",
field: "examCount",
sortable: true,
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "scoreCount",
label: "จำนวนที่บันทึกผลสอบ",
align: "right",
field: "scoreCount",
sortable: true,
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
2023-06-01 12:54:58 +07:00
]);
const columnsHistory = ref<QTableProps["columns"]>([
2023-08-04 10:04:59 +07:00
{
name: "description",
align: "left",
label: "รายละเอียด",
sortable: true,
field: "description",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "createdAt",
align: "left",
2023-08-04 10:04:59 +07:00
label: "วันที่ดำเนินการ",
sortable: true,
field: "createdAt",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
format(val, row) {
return `${date2Thai(row.createdAt)}`;
},
2023-08-04 10:04:59 +07:00
},
{
name: "createdFullName",
align: "left",
label: "ผู้ดำเนินการ",
sortable: true,
field: "createdFullName",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
2023-06-01 12:54:58 +07:00
]);
const visibleColumnsHistory = ref<String[]>([
2023-08-04 10:04:59 +07:00
"description",
"createdAt",
"createdFullName",
2023-06-01 12:54:58 +07:00
]);
2024-09-17 15:56:06 +07:00
/** ดาวน์โหลดรายชื่อผู้สอบคัดเลือกคนพิการได้ */
function clickPassExam(id: string) {
2025-01-14 09:33:58 +07:00
showLoader();
http
.get(config.API.exportDisablePassExamList(id))
.then((res) => {
const data = res.data.result;
data.reportName = `CandidateList`;
genReport(data, data.reportName, "pdf");
})
.catch(async (e) => {
hideLoader();
messageError($q, e);
})
.finally(() => {});
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** ดาวน์โหลดรายชื่อผู้มีสิทธิ์สอบ */
function clickCandidateList(id: string) {
2025-01-14 09:33:58 +07:00
showLoader();
http
.get(config.API.exportDisableCandidateList(id))
.then((res) => {
const data = res.data.result;
data.reportName = `CandidateList`;
genReport(data, data.reportName, "pdf");
})
.catch(async (e) => {
hideLoader();
messageError($q, e);
})
.finally(() => {});
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
/**
* งกนแปลง date เปนภาษาไทย
* @param value นท type datetime จะแปลงเปนไทย
*/
2024-09-17 15:56:06 +07:00
function textDate(value: Date) {
2023-08-04 10:04:59 +07:00
return dateText(value);
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** ดึง list ข้อมูล */
async function fetchData() {
2023-08-04 10:04:59 +07:00
showLoader();
await http
.get(config.API.getDisableCandidates)
.then((res) => {
const data = res.data.result;
let result: ResponseRecruitPeriod[] = [];
if (data.length > 0) {
data.map((r: ResponseRecruitPeriod) => {
if (r.score != null) {
r.scoreCount = r.score.scoreCount;
r.scoreImportDate = r.score.importDate;
}
result.push(r);
});
}
rows.value = result;
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/**
* ไปหนารายละเอยด
* @param id รอบการคดเลอก
*/
function clickDetail(id: string) {
2023-08-04 10:04:59 +07:00
router.push(`/disable/import/${id}`);
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** นำเข้าไฟล์ผลคะแนนสอบ */
async function clickEdit(id: string) {
2023-08-04 10:04:59 +07:00
modalScore.value = true;
textTittleScore.value = "นำเข้าผลการคัดเลือกคนพิการ";
selected_row_id.value = id;
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** นำเข้าไฟล์ผู้สมัครสอบ */
async function clickUpload(id: string) {
2023-08-04 10:04:59 +07:00
modalCandidate.value = true;
textTittleCandidate.value = "นำเข้าผู้สมัครคัดเลือกคนพิการ";
selected_row_id.value = id;
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** ไปหน้าแก้ไข */
function clickEditPeriod(id: string) {
2023-08-04 10:04:59 +07:00
router.push(`/disable/period/${id}`);
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** เปิด ประวัติ */
async function clickHistory(id: string) {
2023-08-04 10:04:59 +07:00
modalHistory.value = true;
showLoader();
await http
.get(config.API.getDisableImportHistory(id))
.then((res) => {
const data = res.data.result;
rowsHistory.value = [];
if (data.length > 0) {
data.map((i: ResponseHistoryObject) => {
rowsHistory.value.push({
createdAt: i.createdAt,
createdFullName: i.createdFullName,
createdUserId: i.createdUserId,
id: i.id,
isActive: i.isActive,
lastUpdateFullName: i.lastUpdateFullName,
lastUpdateUserId: i.lastUpdateUserId,
lastUpdatedAt: i.lastUpdatedAt,
description: i.description,
});
});
}
})
.catch((e) => {
messageError($q, e);
})
.finally(async () => {
hideLoader();
});
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** ลบ รอบการคัดเลือก */
function clickDelete(id: string) {
2023-08-04 10:04:59 +07:00
$q.dialog({
title: "ยืนยันการลบข้อมูล",
message: "ต้องการลบข้อมูลนี้ใช่หรือไม่?",
cancel: {
flat: true,
color: "negative",
},
persistent: true,
})
.onOk(async () => {
showLoader();
await http
.delete(config.API.deleteDisableCandidates(id))
.then((res) => {
success($q, "ลบข้อมูลการสอบสำเร็จ");
fetchData();
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
})
.onCancel(() => {})
.onDismiss(() => {});
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** ไปหน้าเพิ่มข้อมูล */
function clickAdd() {
2023-08-04 10:04:59 +07:00
router.push({ name: "disablePeriodAdd" });
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** ปิด dialog */
async function clickClose() {
2023-08-04 10:04:59 +07:00
modalAdd.value = false;
await fetchData();
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** ปิด dialog คะเเนน */
async function clickCloseScore() {
2023-08-04 10:04:59 +07:00
modalScore.value = false;
await fetchData();
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** ปิด dialog เลือกไฟล์ผู้สมัครคัดเลือกคนพิการ */
async function clickCloseCandidate() {
2023-08-04 10:04:59 +07:00
modalCandidate.value = false;
await fetchData();
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** บันทึก รอบการคัดเลือก */
async function checkSaveCandidate() {
2023-08-04 10:04:59 +07:00
const fd = new FormData();
fd.append("attachment", files_candidate.value[0]);
showLoader();
await http
.post(config.API.uploadDisableCandidates(selected_row_id.value), fd)
.then((res) => {
success($q, "นำเข้าข้อมูลผู้สมัครสอบสำเร็จ");
modalCandidate.value = false;
selected_row_id.value = "";
fetchData();
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** บันทึก คะเเนน*/
async function checkSaveScore() {
2023-08-04 10:04:59 +07:00
const fd = new FormData();
fd.append("attachment", files_score.value[0]);
showLoader();
await http
.post(config.API.saveDisableScores(selected_row_id.value), fd)
.then((res) => {
success($q, "นำเข้าข้อมูลผลคะแนนสอบสำเร็จ");
modalScore.value = false;
selected_row_id.value = "";
fetchData();
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
2024-09-17 15:56:06 +07:00
}
2023-06-01 12:54:58 +07:00
2024-09-17 15:56:06 +07:00
/** บันทึกข้อมูล */
async function checkSave() {
2023-08-04 10:04:59 +07:00
const fd = new FormData();
fd.append("attachment", files.value[0]);
fd.append("year", year.value.toString());
fd.append("round", round.value.toString());
fd.append("name", name.value);
showLoader();
await http
.post(config.API.saveDisableCandidates, fd)
.then((res) => {
success($q, "นำเข้าข้อมูลผู้สมัครคัดเลือกคนพิการสำเร็จ");
modalAdd.value = false;
fetchData();
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
2024-09-17 15:56:06 +07:00
}
onMounted(async () => {
hideLoader();
await fetchData();
});
2023-06-01 12:54:58 +07:00
</script>
2024-09-17 15:56:06 +07:00
<template>
<div class="toptitle text-dark col-12 row items-center">
ดการรอบคดเลอกคนพการ
</div>
<q-card flat bordered class="col-12 q-mt-sm q-pt-sm q-pa-md">
<div>
<Table
style="max-height: 80vh"
:rows="rows"
:columns="columns"
:filter="filter"
:visible-columns="visibleColumns"
v-model:inputfilter="filter"
v-model:inputvisible="visibleColumns"
:pagination="initialPagination"
:nornmalData="true"
:add="clickAdd"
:paging="true"
:titleText="''"
>
<template #columns="props">
2024-09-23 13:40:03 +07:00
<q-tr :props="props">
2024-09-17 15:56:06 +07:00
<q-td>
<q-btn
2024-09-23 13:40:03 +07:00
icon="mdi-dots-horizontal-circle-outline"
color="secondary"
2024-09-17 15:56:06 +07:00
flat
round
dense
2024-09-23 13:40:03 +07:00
v-if="
checkPermission($route)?.attrIsCreate ||
checkPermission($route)?.attrIsDelete ||
checkPermission($route)?.attrIsGet ||
checkPermission($route)?.attrIsUpdate
"
2024-09-17 15:56:06 +07:00
>
2024-09-23 13:40:03 +07:00
<q-menu transition-show="jump-down" transition-hide="jump-up">
<q-list dense style="min-width: 100px">
<q-item
v-if="checkPermission($route)?.attrIsGet"
clickable
v-close-popup
@click="clickDetail(props.row.id)"
>
<q-item-section style="min-width: 0px" avatar>
<q-icon color="info" size="xs" name="mdi-eye" />
</q-item-section>
<q-item-section>รายละเอยด</q-item-section>
</q-item>
2024-09-17 15:56:06 +07:00
2024-09-23 13:40:03 +07:00
<q-item
v-if="
checkPermission($route)?.attrIsUpdate &&
checkPermission($route)?.attrIsGet
"
clickable
v-close-popup
@click="clickEditPeriod(props.row.id)"
>
<q-item-section style="min-width: 0px" avatar>
<q-icon color="edit" size="xs" name="mdi-pencil" />
</q-item-section>
<q-item-section>แกไขขอม</q-item-section>
</q-item>
<q-item
v-if="checkPermission($route)?.attrIsDelete"
clickable
v-close-popup
@click="clickDelete(props.row.id)"
>
<q-item-section style="min-width: 0px" avatar>
<q-icon color="red" size="xs" name="mdi-delete" />
</q-item-section>
<q-item-section>ลบขอม</q-item-section>
</q-item>
<q-item
v-if="checkPermission($route)?.attrIsGet"
clickable
v-close-popup
@click="clickHistory(props.row.id)"
>
<q-item-section style="min-width: 0px" avatar>
<q-icon
color="deep-purple"
size="xs"
name="mdi-history"
/>
</q-item-section>
<q-item-section>แสดงประวการทำงาน</q-item-section>
</q-item>
</q-list>
</q-menu>
2024-09-17 15:56:06 +07:00
</q-btn>
</q-td>
2024-09-23 13:40:03 +07:00
<q-td v-for="col in props.cols" :key="col.name" :props="props">
2024-09-17 15:56:06 +07:00
<div v-if="col.name == 'no'">
{{ props.rowIndex + 1 }}
</div>
<div v-else-if="col.name == 'name'" class="table_ellipsis2">
{{ col.value }}
</div>
<div v-else-if="col.name == 'scoreCount'" class="table_ellipsis2">
<q-btn
flat
dense
size="12px"
round
color="green"
@click.stop.prevent="clickEdit(props.row.id)"
v-if="
col.value == null && checkPermission($route)?.attrIsUpdate
"
>
<q-icon name="mdi-file-excel-outline" size="20px" />
<!-- นำเขาไฟลผลคะแนนสอบ -->
<q-tooltip>นำเขาไฟลผลคะแนนสอบ</q-tooltip>
</q-btn>
<div v-else>
{{ col.value }}
<q-btn
v-if="checkPermission($route)?.attrIsUpdate"
dense
size="12px"
flat
round
color="green"
@click.stop.prevent="clickEdit(props.row.id)"
icon="mdi-file-excel-outline"
>
<q-tooltip>นำเขาไฟลผลคะแนนสอบอกคร</q-tooltip>
</q-btn>
<q-btn
v-if="checkPermission($route)?.attrIsGet"
dense
size="12px"
flat
round
color="indigo"
@click.stop.prevent="clickPassExam(props.row.id)"
icon="mdi-clipboard-arrow-down"
>
<q-tooltip
>ดาวนโหลดรายชอผสอบคดเลอกคนพการได</q-tooltip
>
</q-btn>
</div>
</div>
<div v-else-if="col.name == 'examCount'" class="table_ellipsis2">
<q-btn
flat
dense
size="12px"
color="green"
round
@click.stop.prevent="clickUpload(props.row.id)"
v-if="
(col.value == null || col.value == '0') &&
checkPermission($route)?.attrIsUpdate
"
>
<q-icon name="mdi-file-excel-outline" size="20px" />
<q-tooltip>นำเขาไฟลสมครสอบ</q-tooltip>
</q-btn>
<div v-else>
{{ col.value }}
<q-btn
v-if="checkPermission($route)?.attrIsUpdate"
dense
size="12px"
flat
round
color="green"
@click.stop.prevent="clickUpload(props.row.id)"
icon="mdi-file-excel-outline"
>
<q-tooltip>นำเขาไฟลสมครสอบอกคร</q-tooltip>
</q-btn>
<q-btn
v-if="checkPermission($route)?.attrIsGet"
dense
size="12px"
flat
round
color="indigo"
@click.stop.prevent="clickCandidateList(props.row.id)"
icon="mdi-clipboard-arrow-down"
>
<q-tooltip>ดาวนโหลดรายชอผทธสอบ</q-tooltip>
</q-btn>
</div>
</div>
<div v-else>
{{ col.value }}
</div>
</q-td>
</q-tr>
</template>
</Table>
</div>
</q-card>
<HistoryTable
:rows="rowsHistory"
:columns="columnsHistory"
:visible-columns="visibleColumnsHistory"
v-model:modal="modalHistory"
v-model:inputvisible="visibleColumnsHistory"
v-model:tittle="tittleHistory"
v-model:inputfilter="filterHistory"
:filter="filterHistory"
2024-09-17 15:56:06 +07:00
>
<template #columns="props">
<q-tr :props="props">
<q-td v-for="col in props.cols" :key="col.name" :props="props">
<div v-if="col.name == 'isActive'" class="">
<q-icon
v-if="col.value == false"
name="mdi-close"
color="red"
class="text-h5"
/>
<q-icon v-else name="mdi-check" color="positive" class="text-h5" />
</div>
<div v-else class="">
{{ col.value }}
</div>
</q-td>
</q-tr>
</template>
</HistoryTable>
<!-- popup Edit window-->
<q-dialog v-model="modalAdd" persistent>
<q-card style="width: 600px">
<q-form ref="myForm">
<DialogHeader :tittle="textTittle" :close="clickClose" />
<q-separator />
<q-card-section>
<div class="col-12 row items-center q-col-gutter-sm">
<div class="col-12">
<q-input
outlined
v-model="name"
label="ชื่อการคัดเลือกคนพิการ"
dense
autogrow
lazy-rules
autofocus
hide-bottom-space
></q-input>
</div>
<div class="col-12">
<q-input
outlined
v-model="round"
label="ครั้งที่"
dense
autogrow
lazy-rules
autofocus
hide-bottom-space
></q-input>
</div>
<div class="col-12">
<q-input
outlined
v-model="year"
label="ปีงบประมาณ"
dense
autogrow
lazy-rules
autofocus
hide-bottom-space
></q-input>
</div>
<div class="col-12">
<q-file
v-model="files"
dense
label="เลือกไฟล์รายชื่อผู้สมัครคัดเลือกคนพิการ"
outlined
use-chips
multiple
>
<template v-slot:prepend>
<q-icon name="attach_file" />
</template>
</q-file>
</div>
</div>
</q-card-section>
<q-separator />
<q-card-actions class="text-primary q-py-sm">
<q-space />
<q-btn
flat
round
color="public"
@click="checkSave"
icon="mdi-content-save-outline"
>
<q-tooltip>นท</q-tooltip>
</q-btn>
</q-card-actions>
</q-form>
</q-card>
</q-dialog>
<q-dialog v-model="modalScore" persistent>
<q-card style="width: 600px">
<q-form ref="myFormScore">
<DialogHeader :tittle="textTittleScore" :close="clickCloseScore" />
<q-separator />
<q-card-section>
<div class="col-12 row items-center q-col-gutter-sm">
<div class="col-12">
<q-file
v-model="files_score"
dense
label="เลือกไฟล์ผลการคัดเลือกคนพิการ"
outlined
use-chips
multiple
>
<template v-slot:prepend>
<q-icon name="attach_file" />
</template>
</q-file>
</div>
</div>
</q-card-section>
<q-separator />
<q-card-actions class="text-primary q-py-sm">
<q-space />
<q-btn
flat
round
color="public"
@click="checkSaveScore"
icon="mdi-content-save-outline"
>
<q-tooltip>นท</q-tooltip>
</q-btn>
</q-card-actions>
</q-form>
</q-card>
</q-dialog>
<q-dialog v-model="modalCandidate" persistent>
<q-card style="width: 600px">
<q-form ref="myFormScore">
<DialogHeader
:tittle="textTittleCandidate"
:close="clickCloseCandidate"
/>
<q-separator />
<q-card-section>
<div class="col-12 row items-center q-col-gutter-sm">
<div class="col-12">
<q-file
v-model="files_candidate"
dense
label="เลือกไฟล์ผู้สมัครคัดเลือกคนพิการ"
outlined
use-chips
multiple
>
<template v-slot:prepend>
<q-icon name="attach_file" />
</template>
</q-file>
</div>
</div>
</q-card-section>
<q-separator />
<q-card-actions class="text-primary q-py-sm">
<q-space />
<q-btn
flat
round
color="public"
@click="checkSaveCandidate"
icon="mdi-content-save-outline"
>
<q-tooltip>นท</q-tooltip>
</q-btn>
</q-card-actions>
</q-form>
</q-card>
</q-dialog>
</template>
2023-06-01 12:54:58 +07:00
<style></style>