hrms-mgt/src/modules/09_leave/views/SpecialTimeMain.vue

537 lines
14 KiB
Vue
Raw Normal View History

<script setup lang="ts">
import { onMounted, ref, watch } from "vue";
import { useQuasar } from "quasar";
import type { QTableProps } from "quasar";
2024-09-18 17:26:53 +07:00
import http from "@/plugins/http";
import config from "@/app.config";
2024-09-18 17:26:53 +07:00
import { useCounterMixin } from "@/stores/mixin";
import { useSpecialTimeStore } from "@/modules/09_leave/stores/SpecialTimeStore";
import { checkPermission } from "@/utils/permissions";
2023-12-15 09:58:02 +07:00
2024-09-18 17:26:53 +07:00
import type {
DataDateMonthObject,
DetailData,
Pagination,
} from "@/modules/09_leave/interface/request/specialTime";
2023-11-29 10:45:23 +07:00
2023-12-15 09:58:02 +07:00
import DialogReason from "@/components/Dialogs/PopupReason.vue";
import DialogApprove from "@/modules/09_leave/components/4_specialTime/DialogApprove.vue";
const $q = useQuasar(); // show dialog
const mixin = useCounterMixin();
const store = useSpecialTimeStore();
const {
hideLoader,
monthYear2Thai,
messageError,
showLoader,
success,
date2Thai,
} = mixin;
2023-12-15 09:58:02 +07:00
const emit = defineEmits(["update:change-page"]);
const rows = ref<any[]>([]);
const toDay = ref<Date>(new Date());
const monthToday = toDay.value.getMonth();
const yearToday = toDay.value.getFullYear();
const month = ref<number>(monthToday + 1);
const year = ref<number>(yearToday);
2023-12-15 09:58:02 +07:00
/**ตัวแปรที่ใช้ */
2024-09-18 17:26:53 +07:00
const modalUnapprove = ref<boolean>(false);
const modalApprove = ref<boolean>(false);
const detailData = ref<DetailData[]>([]);
const editCheck = ref<string>("");
const dialogTitle = ref<string>("");
const dialogDesc = ref<string>("");
const name = ref<string>("");
const id = ref<string>("");
const dateDialog = ref<string>("");
const dateFixDialog = ref<string>("");
const dateYear = ref<number>(new Date().getFullYear());
2023-11-29 10:45:23 +07:00
2024-09-18 17:26:53 +07:00
/** Function Date */
const dateMonth = ref<DataDateMonthObject>({
month: new Date().getMonth(),
year: new Date().getFullYear(),
});
const total = ref<number>(0);
const totalList = ref<number>(1);
const pagination = ref({
sortBy: "createdAt",
descending: true,
2024-09-18 17:26:53 +07:00
page: 1,
rowsPerPage: 10,
2024-09-18 17:26:53 +07:00
});
// ค้นหาในตาราง
const filterKeyword = ref<string>("");
const filterRef = ref<HTMLInputElement | null>(null);
const resetFilter = () => {
filterKeyword.value = "";
fetchData();
2024-09-18 17:26:53 +07:00
if (filterRef.value) {
filterRef.value.focus();
}
};
const visibleColumns = ref<String[]>([
"no",
"fullname",
"date",
"dateFix",
"timeMorning",
"timeAfternoon",
"description",
]);
const columns = ref<QTableProps["columns"]>([
{
name: "no",
align: "center",
label: "ลำดับ",
sortable: false,
field: "no",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "fullname",
align: "left",
label: "ชื่อ-นามสกุล",
sortable: true,
field: "fullname",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "date",
align: "left",
label: "วันที่ยื่นเรื่อง",
sortable: true,
field: "date",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "dateFix",
align: "left",
label: "วันที่ขอแก้ไข",
sortable: true,
field: "dateFix",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "timeMorning",
align: "left",
label: "ช่วงเช้า",
sortable: true,
field: "timeMorning",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "timeAfternoon",
align: "left",
label: "ช่วงบ่าย",
sortable: true,
field: "timeAfternoon",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "description",
align: "left",
label: "เหตุผล",
sortable: true,
field: "description",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
]);
2023-12-15 09:58:02 +07:00
/**
* งกนไมอน
* @param fullname
* @param personId personId
*/
async function unapprove(fullname: string, personId: string) {
id.value = personId;
2023-12-15 09:58:02 +07:00
dialogTitle.value = " ไม่อนุมัติคำขอ"; // + fullname;
name.value = fullname;
modalUnapprove.value = true;
2023-12-15 09:58:02 +07:00
}
2023-12-15 09:58:02 +07:00
/** function openDialog */
function openModal(
data: any,
check: string,
date: string,
dateFix: string,
personId: string
) {
id.value = personId;
modalApprove.value = true;
dateDialog.value = date;
dateFixDialog.value = dateFix;
editCheck.value = check;
if (check === "PENDING") {
detailData.value = data;
}
}
2023-12-15 09:58:02 +07:00
/** function closeDialog */
2024-09-18 17:26:53 +07:00
function closeDialog() {
modalUnapprove.value = false;
modalApprove.value = false;
editCheck.value = "PENDING";
2024-09-18 17:26:53 +07:00
}
/** API reject */
2024-09-18 17:26:53 +07:00
async function clickSave(reason: string) {
2023-12-15 09:58:02 +07:00
showLoader();
modalUnapprove.value = false;
const body = {
reason: reason,
};
await http
.put(config.API.specialTimeReject(id.value), body)
2023-12-15 09:58:02 +07:00
.then(() => {
success($q, "บันทึกข้อมูลสำเร็จ");
})
.catch((e) => {
messageError($q, e);
})
.finally(async () => {
await fetchData();
2023-12-15 09:58:02 +07:00
hideLoader();
});
2024-09-18 17:26:53 +07:00
}
2024-09-18 17:26:53 +07:00
/**
* งขอมลตามป
* @param e
*/
async function updateMonth(e: DataDateMonthObject) {
if (e != null) {
dateYear.value = e.year;
dateYear.value = year.value;
month.value = dateMonth.value.month + 1;
year.value = dateMonth.value.year;
getSearch();
}
2024-09-18 17:26:53 +07:00
}
//แปลงเดือนเป็นไทย
function monthYearThai(val: any) {
if (val == null) return "";
else return monthYear2Thai(val.month, val.year);
}
function updatePagination(newPagination: any) {
pagination.value.page = 1;
pagination.value.rowsPerPage = newPagination.rowsPerPage;
}
function getSearch() {
pagination.value.page = 1;
fetchData();
}
2024-09-18 17:26:53 +07:00
watch(
() => pagination.value.rowsPerPage,
2024-09-18 17:26:53 +07:00
async () => {
getSearch();
2024-09-18 17:26:53 +07:00
}
);
/**
* งชนเรยกดอม
*/
async function fetchData() {
showLoader();
await http
.get(
config.API.specialTime() +
`?year=${year.value}&month=${month.value}&page=${pagination.value.page}&pageSize=${pagination.value.rowsPerPage}&keyword=${filterKeyword.value}`
)
.then(async (res) => {
let data = res.data.result.data;
total.value = res.data.result.total;
totalList.value = Math.ceil(
res.data.result.total / pagination.value.rowsPerPage
);
total.value = res.data.result.total;
rows.value = [];
data.map((e: any) => {
rows.value.push({
id: e.id,
fullname: e.fullName,
date: date2Thai(new Date(e.createdAt), false, true),
dateFix: date2Thai(new Date(e.checkDate)),
timeMorning:
e.startTimeMorning == null
? "-"
: e.checkInEdit == true
? e.startTimeMorning + " - " + e.endTimeMorning
: "-",
timeAfternoon:
e.startTimeAfternoon == null
? "-"
: e.checkOutEdit == true
? e.startTimeAfternoon + " - " + e.endTimeAfternoon
: "-",
startTimeMorning: e.startTimeMorning,
endTimeMorning: e.endTimeMorning,
startTimeAfternoon: e.startTimeAfternoon,
endTimeAfternoon: e.endTimeAfternoon,
checkIn: e.checkInTime,
checkOut: e.checkOutTime,
status: e.status,
checkInStatus: store.convertStatus(e.checkInStatus),
checkOutStatus: store.convertStatus(e.checkOutStatus),
reason: e.reason,
description: e.description,
checkInEdit: e.checkInEdit,
checkOutEdit: e.checkOutEdit,
});
});
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
console.log(month.value);
});
}
/**Hook */
onMounted(async () => {
//อัพเดทเป็นวันปัจจุบันเมื่อเข้าหน้านี้
const toDay = ref<Date>(new Date());
const monthToday = toDay.value.getMonth();
const yearToday = toDay.value.getFullYear();
month.value = monthToday + 1;
year.value = yearToday;
await fetchData();
});
</script>
<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">
2023-11-03 15:08:53 +07:00
<div class="row col-12 q-col-gutter-sm q-mb-sm">
<div class="q-gutter-sm">
<datepicker
v-model="dateMonth"
2023-11-03 15:08:53 +07:00
:locale="'th'"
autoApply
month-picker
:enableTimePicker="false"
@update:modelValue="updateMonth"
2023-11-03 15:08:53 +07:00
>
<template #year="{ year }">{{ year + 543 }}</template>
<template #year-overlay-value="{ value }">{{
parseInt(value + 543)
}}</template>
<template #trigger>
<q-input
:model-value="monthYearThai(dateMonth)"
dense
outlined
hide-bottom-space
style="width: 130px"
>
<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-space />
<q-input
class="col-xs-12 col-sm-3 col-md-2"
standout
dense
v-model="filterKeyword"
ref="filterRef"
outlined
debounce="300"
placeholder="ค้นหาชื่อ-นามสกุล"
@keydown.enter.prevent="getSearch()"
2023-11-03 15:08:53 +07:00
>
<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"
2023-11-03 15:08:53 +07:00
multiple
outlined
dense
options-dense
:display-value="$q.lang.table.columns"
emit-value
map-options
:options="columns"
2023-11-03 15:08:53 +07:00
option-value="name"
2024-11-05 16:33:46 +07:00
style="min-width: 140px"
2023-11-03 15:08:53 +07:00
class="col-xs-12 col-sm-3 col-md-2"
/>
</div>
<div class="col-12">
<d-table
:columns="columns"
:rows="rows"
2023-11-03 15:08:53 +07:00
row-key="tb-list"
flat
bordered
2023-11-29 10:45:23 +07:00
:paging="false"
2023-11-03 15:08:53 +07:00
dense
:visible-columns="visibleColumns"
:rows-per-page-options="[10, 25, 50, 100]"
2023-11-29 10:45:23 +07:00
@update:pagination="updatePagination"
2023-11-03 15:08:53 +07:00
>
2023-11-29 10:45:23 +07:00
<template v-slot:pagination="scope">
งหมด {{ total }} รายการ
2023-11-29 10:45:23 +07:00
<q-pagination
v-model="pagination.page"
2023-11-29 10:45:23 +07:00
active-color="primary"
color="dark"
:max="Number(totalList)"
2023-11-29 10:45:23 +07:00
size="sm"
boundary-links
direction-links
:max-pages="5"
@update:model-value="fetchData()"
2023-11-29 10:45:23 +07:00
></q-pagination>
</template>
2023-11-03 15:08:53 +07:00
<template v-slot:header="props">
<q-tr :props="props">
2024-07-24 16:37:04 +07:00
<q-th auto-width />
2023-11-03 15:08:53 +07:00
<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">
<q-tr :props="props">
2024-07-24 16:37:04 +07:00
<q-td auto-width class="text-right">
2023-11-03 15:08:53 +07:00
<q-btn
v-if="
props.row.status == 'PENDING' &&
checkPermission($route)?.attrIsUpdate &&
checkPermission($route)?.attrIsGet
"
2023-11-03 15:08:53 +07:00
color="orange"
class="q-px-md"
dense
unelevated
@click="unapprove(props.row.fullname, props.row.id)"
2023-11-03 15:08:53 +07:00
>ไมอน</q-btn
>
<q-btn
v-if="
props.row.status == 'PENDING' &&
checkPermission($route)?.attrIsUpdate &&
checkPermission($route)?.attrIsGet
"
2023-11-03 15:08:53 +07:00
color="primary"
class="q-px-md q-ml-sm"
dense
unelevated
@click="
openModal(
props.row,
'PENDING',
props.row.date,
props.row.dateFix,
props.row.id
)
"
2023-11-03 15:08:53 +07:00
>อน</q-btn
>
<q-badge
v-if="props.row.status == 'APPROVE'"
rounded
outline
color="green"
label="อนุมัติ"
/>
<q-badge
v-if="props.row.status == 'REJECT'"
rounded
outline
color="red"
label="ไม่อนุมัติ"
/>
2023-11-03 15:08:53 +07:00
</q-td>
2024-07-24 16:37:04 +07:00
<q-td v-for="col in props.cols" :key="col.name" :props="props">
<div v-if="col.name == 'no'">
{{
(pagination.page - 1) * pagination.rowsPerPage +
2024-07-24 16:37:04 +07:00
props.rowIndex +
1
}}
</div>
<div
v-else-if="col.name === 'description'"
class="table_ellipsis"
>
{{ props.row.description }}
</div>
<div v-else>
{{ col.value }}
</div>
</q-td>
2023-11-03 15:08:53 +07:00
</q-tr>
</template>
</d-table>
</div>
</q-card>
2023-12-20 16:32:35 +07:00
<DialogReason
v-model:modal="modalUnapprove"
:title="dialogTitle"
:desc="dialogDesc"
label="เหตุผล"
:savaForm="clickSave"
/>
2024-07-24 16:37:04 +07:00
<DialogApprove
:modal="modalApprove"
:closeDialog="closeDialog"
:date="dateDialog"
:dateFix="dateFixDialog"
:id="id"
:editCheck="editCheck"
:detailData="detailData"
/>
</template>
<style></style>