277 lines
8.3 KiB
Vue
277 lines
8.3 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted, reactive } from "vue";
|
|
import { useQuasar } from "quasar";
|
|
|
|
/** importType */
|
|
import type { dataPost } from "@/modules/09_leave/interface/request/changeRound";
|
|
|
|
/** importComponents */
|
|
import Dialogform from "@/modules/09_leave/components/4_ChangeRound/DialogForm.vue";
|
|
|
|
/** importStore */
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import { useChangeRoundDataStore } from "@/modules/09_leave/stores/ChangeRoundStore";
|
|
|
|
/** useStore */
|
|
const mixin = useCounterMixin();
|
|
const { dialogMessageNotify } = mixin;
|
|
const dataStore = useChangeRoundDataStore();
|
|
|
|
/** use */
|
|
const $q = useQuasar();
|
|
|
|
const modal = ref<boolean>(false);
|
|
const dateWork = ref<string>("5");
|
|
const modalFix = ref<boolean>(false);
|
|
const editCheck = ref<string>("");
|
|
const DataRow = ref<any>();
|
|
const formData = reactive<dataPost>({
|
|
cardId: "",
|
|
firstName: "",
|
|
lastName: "",
|
|
});
|
|
|
|
/**
|
|
* Function openPopup
|
|
* @param check action edit,history
|
|
* @param detail รายละเอียดข้อมูลรอบการปฏิบัติของผู้ใช้งาน
|
|
*/
|
|
function Openmodal(check: string, detail: any) {
|
|
DataRow.value = detail;
|
|
modal.value = true;
|
|
dataStore.setProfileId(DataRow.value.profileId);
|
|
editCheck.value = check;
|
|
if (check === "history") {
|
|
modal.value = true;
|
|
dataStore.fetchDatainHistory();
|
|
}
|
|
}
|
|
|
|
function OpenmodalFix(detail: any) {
|
|
modalFix.value = true;
|
|
}
|
|
|
|
/** Function closePopup */
|
|
function closeDialog() {
|
|
modal.value = false;
|
|
modalFix.value = false;
|
|
}
|
|
|
|
function save() {
|
|
console.log("dateWork===>", dateWork.value);
|
|
closeDialog();
|
|
}
|
|
|
|
/** Function ค้นหาข้อมูล */
|
|
function searchData() {
|
|
if (formData.cardId || formData.firstName || formData.lastName) {
|
|
dataStore.fetchDataForCardId(formData);
|
|
} else {
|
|
dialogMessageNotify($q, "กรุณากรอกข้อมูลอย่างน้อย 1 ช่อง");
|
|
}
|
|
}
|
|
</script>
|
|
<template>
|
|
<div class="toptitle text-dark col-12 row items-center">
|
|
เปลี่ยนแปลงรอบการปฏิบัติงานของผู้ใช้งาน
|
|
</div>
|
|
<q-card flat bordered class="col-12 q-mt-sm q-pa-md">
|
|
<div class="row col-12 q-mb-sm">
|
|
<q-card flat bordered class="bg-grey-2 col-12 bg-white q-pa-lg">
|
|
<div class="text-dark col-12 text-weight-bold text-subtitle1">
|
|
ค้นหารายชื่อ
|
|
</div>
|
|
<div class="row justify-between q-gutter-y-sm">
|
|
<q-input
|
|
v-model="formData.cardId"
|
|
outlined
|
|
label="เลขบัตรประชาชน"
|
|
class="col-6 col-md-4 bg-white inputgreen"
|
|
dense
|
|
hide-bottom-space
|
|
maxlength="13"
|
|
/>
|
|
<q-input
|
|
v-model="formData.firstName"
|
|
outlined
|
|
label="ชื่อ"
|
|
class="col-5 col-md-3 bg-white inputgreen"
|
|
dense
|
|
hide-bottom-space
|
|
/>
|
|
<q-input
|
|
v-model="formData.lastName"
|
|
outlined
|
|
label="นามสกุล"
|
|
class="col-6 col-md-3 bg-white inputgreen"
|
|
dense
|
|
hide-bottom-space
|
|
/>
|
|
<q-btn
|
|
@click="searchData"
|
|
for="#search"
|
|
dense
|
|
unelevated
|
|
color="primary"
|
|
class="q-px-sm col-5 col-md-1"
|
|
style="max-height: 40px"
|
|
>ค้นหา</q-btn
|
|
>
|
|
</div>
|
|
</q-card>
|
|
</div>
|
|
<div v-if="dataStore.rows.length === 0 && dataStore.checkCilck === true">
|
|
<q-card
|
|
flat
|
|
bordered
|
|
class="bg-grey-2 col-12 q-pa-lg text-center text-subtitle1 text-bold"
|
|
>ไม่พบข้อมูล</q-card
|
|
>
|
|
</div>
|
|
<div v-if="dataStore.rows.length !== 0" class="col-12 q-mt-xl">
|
|
<d-table
|
|
ref="table"
|
|
:columns="dataStore.columns"
|
|
:rows="dataStore.rows"
|
|
row-key="interrogated"
|
|
flat
|
|
bordered
|
|
dense
|
|
class="custom-header-table"
|
|
:visible-columns="dataStore.visibleColumns"
|
|
>
|
|
<!-- :paging="true" -->
|
|
<template v-slot:header="props">
|
|
<q-tr :props="props">
|
|
<q-th
|
|
v-for="col in props.cols"
|
|
:key="col.name"
|
|
:props="props"
|
|
style="color: #000000; font-weight: 500"
|
|
>
|
|
<span class="text-weight-medium">{{ col.label }}</span>
|
|
</q-th>
|
|
<q-th style="width: 200px" />
|
|
</q-tr>
|
|
</template>
|
|
<template v-slot:body="props">
|
|
<q-tr :props="props" class="cursor-pointer">
|
|
<q-td v-for="col in props.cols" :key="col.name" :props="props">
|
|
<div>
|
|
{{ col.value }}
|
|
</div>
|
|
</q-td>
|
|
<q-td style="width: 150px">
|
|
<div>
|
|
<q-btn
|
|
flat
|
|
icon="mdi-dots-vertical"
|
|
color="grey-8"
|
|
for="#cancel"
|
|
dense
|
|
round
|
|
unelevated
|
|
>
|
|
<q-menu>
|
|
<q-list>
|
|
<q-item
|
|
clickable
|
|
v-close-popup
|
|
@click="Openmodal('edit', props.row)"
|
|
>
|
|
<q-item-section>
|
|
<q-item-label>เปลี่ยนรอบการลงเวลา</q-item-label>
|
|
</q-item-section>
|
|
</q-item>
|
|
<q-item
|
|
clickable
|
|
v-close-popup
|
|
@click="Openmodal('history', props.row)"
|
|
>
|
|
<q-item-section>
|
|
<q-item-label>ประวัติการเปลี่ยนรอบ</q-item-label>
|
|
</q-item-section>
|
|
</q-item>
|
|
<q-item
|
|
clickable
|
|
v-close-popup
|
|
@click="OpenmodalFix(props.row)"
|
|
>
|
|
<q-item-section>
|
|
<q-item-label>แก้ไขปฏิทินวันทำงาน</q-item-label>
|
|
</q-item-section>
|
|
</q-item>
|
|
</q-list>
|
|
</q-menu>
|
|
</q-btn>
|
|
</div>
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</d-table>
|
|
</div>
|
|
</q-card>
|
|
|
|
<!-- popup แก้ไขปฏิทินวันทำงาน -->
|
|
<Dialogform
|
|
:modal="modal"
|
|
:closeDialog="closeDialog"
|
|
:editCheck="editCheck"
|
|
:DataRow="DataRow"
|
|
:personId="DataRow == null ? '' : DataRow.profileId"
|
|
@update:change-page="dataStore.changePage"
|
|
/>
|
|
<q-dialog v-model="modalFix" persistent>
|
|
<q-card style="min-width: 800px"
|
|
><q-toolbar>
|
|
<q-toolbar-title class="text-subtitle1 text-bold">
|
|
{{ "แก้ไขปฏิทินวันทำงาน" }}
|
|
</q-toolbar-title>
|
|
<q-btn
|
|
icon="close"
|
|
unelevated
|
|
round
|
|
dense
|
|
@click="closeDialog"
|
|
style="color: #ff8080; background-color: #ffdede"
|
|
/>
|
|
</q-toolbar>
|
|
<q-separator color="grey-4" />
|
|
<q-form @submit="save" class="q-gutter-md">
|
|
<div class="q-pa-md">
|
|
<q-radio
|
|
name="dateWork"
|
|
v-model="dateWork"
|
|
val="5"
|
|
label="ทำงาน 5 วัน"
|
|
/>
|
|
<q-radio
|
|
name="dateWork"
|
|
v-model="dateWork"
|
|
val="6"
|
|
label="ทำงาน 6 วัน"
|
|
/>
|
|
</div>
|
|
<q-separator color="grey-4" />
|
|
<div class="q-pa-xs">
|
|
<div class="row justify-end q-mr-sm q-py-sm">
|
|
<q-btn
|
|
id="onSubmit"
|
|
type="submit"
|
|
unelevated
|
|
label="บันทึก"
|
|
class="q-px-md items-center"
|
|
color="secondary"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</q-form>
|
|
</q-card>
|
|
</q-dialog>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.q-table tbody td:before.no-background {
|
|
background: none;
|
|
}
|
|
</style>
|