2024-06-10 11:57:27 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, onMounted } from "vue";
|
|
|
|
|
import type { QTableProps } from "quasar";
|
|
|
|
|
import { useQuasar } from "quasar";
|
|
|
|
|
import { useRouter } from "vue-router";
|
|
|
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
|
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
|
|
|
|
import SendToCommand from "@/modules/05_placement/components/ChangePosition/SendToCommand.vue";
|
|
|
|
|
|
2024-06-10 18:00:18 +07:00
|
|
|
import DialogRound from "@/modules/05_placement/components/ChangePosition/DialogRound.vue";
|
2024-06-10 11:57:27 +07:00
|
|
|
import type {
|
|
|
|
|
listAppointType,
|
|
|
|
|
resData,
|
|
|
|
|
} from "@/modules/05_placement/interface/response/AppointMent";
|
|
|
|
|
import type { OpType } from "@/modules/05_placement/interface/response/Main";
|
2024-06-10 18:00:18 +07:00
|
|
|
|
2024-06-10 11:57:27 +07:00
|
|
|
import http from "@/plugins/http";
|
|
|
|
|
import config from "@/app.config";
|
|
|
|
|
|
2024-06-10 18:00:18 +07:00
|
|
|
const round = ref<string>('');
|
|
|
|
|
const idRound = ref<string>('');
|
|
|
|
|
const editCheck = ref<boolean>(false);
|
|
|
|
|
const modalRound = ref<boolean>(false);
|
2024-06-10 11:57:27 +07:00
|
|
|
const $q = useQuasar();
|
|
|
|
|
const modal = ref<boolean>(false);
|
|
|
|
|
const storeFn = useTransferDataStore();
|
|
|
|
|
const { statusText } = storeFn;
|
|
|
|
|
const mixin = useCounterMixin(); //เรียกฟังก์ชันกลาง
|
|
|
|
|
const {
|
|
|
|
|
showLoader,
|
|
|
|
|
hideLoader,
|
|
|
|
|
success,
|
|
|
|
|
messageError,
|
|
|
|
|
date2Thai,
|
|
|
|
|
dialogRemove,
|
|
|
|
|
} = mixin;
|
|
|
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
const rows = ref<any>([]);
|
|
|
|
|
const rows2 = ref<any>([]);
|
|
|
|
|
const filterKeyword = ref<string>("");
|
|
|
|
|
const filterKeyword2 = ref<string>("");
|
|
|
|
|
const filterRef = ref<any>(null);
|
|
|
|
|
const optionsType = ref<OpType[]>([]);
|
|
|
|
|
const type = ref<string>("");
|
|
|
|
|
|
|
|
|
|
const visibleColumns = ref<string[]>(["no", "name", "createdAt", "status"]);
|
|
|
|
|
const pagination = ref({
|
|
|
|
|
sortBy: "createdAt",
|
|
|
|
|
descending: true,
|
|
|
|
|
page: 1,
|
|
|
|
|
rowsPerPage: 10,
|
|
|
|
|
});
|
|
|
|
|
const columns = ref<QTableProps["columns"]>([
|
|
|
|
|
{
|
|
|
|
|
name: "no",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ลำดับ",
|
|
|
|
|
sortable: false,
|
|
|
|
|
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: "createdAt",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "วันที่ดำเนินการ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "createdAt",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "status",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "สถานะ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "status",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
//รีเซ็ต input
|
|
|
|
|
const resetFilter = () => {
|
|
|
|
|
filterKeyword.value = "";
|
|
|
|
|
filterKeyword2.value = "";
|
|
|
|
|
filterRef.value.focus();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//ปิด modal
|
|
|
|
|
const clickClose = () => {
|
|
|
|
|
modal.value = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//เปิด modal
|
|
|
|
|
const sendToCommand = () => {
|
|
|
|
|
modal.value = true;
|
|
|
|
|
filterKeyword2.value = "";
|
|
|
|
|
// fecthTypeOption();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//ดึงข้อมูล API
|
|
|
|
|
const fecthLists = async () => {
|
|
|
|
|
// showLoader();
|
|
|
|
|
// rows.value = [];
|
|
|
|
|
// await http
|
|
|
|
|
// .get(config.API.appointmentMain())
|
|
|
|
|
// .then((res) => {
|
|
|
|
|
// let response = res.data.result;
|
|
|
|
|
// listRecevice.value = response;
|
|
|
|
|
// rows.value = response;
|
|
|
|
|
// rows2.value = rows.value.filter(
|
|
|
|
|
// (e: any) => e.status !== "REPORT" && e.status !== "DONE"
|
|
|
|
|
// );
|
|
|
|
|
// })
|
|
|
|
|
// .catch((e) => {
|
|
|
|
|
// messageError($q, e);
|
|
|
|
|
// })
|
|
|
|
|
// .finally(() => {
|
|
|
|
|
// hideLoader();
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
rows.value = [
|
|
|
|
|
{
|
|
|
|
|
id: "08dc86c2-98a5-45f0-8e37-3502a4eb78c0",
|
|
|
|
|
name: "ย้ายสับเปลี่ยนตำแหน่งทุกเขต",
|
|
|
|
|
status: "WAITTING",
|
|
|
|
|
createdAt: "2024-06-07T14:22:31.985829",
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
rows2.value = rows.value.filter(
|
|
|
|
|
(e: any) => e.status !== "REPORT" && e.status !== "DONE"
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// dialog สำหรับแก้ไข
|
2024-06-10 18:00:18 +07:00
|
|
|
const openModaledit = (data: any) => {
|
|
|
|
|
modalRound.value = true;
|
|
|
|
|
editCheck.value = true;
|
|
|
|
|
round.value = data.name
|
|
|
|
|
idRound.value = data.id
|
|
|
|
|
};
|
2024-06-10 11:57:27 +07:00
|
|
|
|
|
|
|
|
// ฟังก์ชั่นสำหรับเพิ่มรอบการย้ายสับเปลี่ยนตำแหน่ง
|
2024-06-10 18:00:18 +07:00
|
|
|
function addRound() {
|
|
|
|
|
modalRound.value = true;
|
|
|
|
|
}
|
2024-06-10 11:57:27 +07:00
|
|
|
|
|
|
|
|
//ลบข้อมูล
|
|
|
|
|
const clickDelete = (id: string) => {
|
|
|
|
|
dialogRemove($q, () => {
|
|
|
|
|
// showLoader();
|
|
|
|
|
// http
|
|
|
|
|
// .delete(config.API.appointmentDelete(id))
|
|
|
|
|
// .then(() => {
|
|
|
|
|
// success($q, "ลบข้อมูลสำเร็จ");
|
|
|
|
|
// })
|
|
|
|
|
// .catch((e) => {
|
|
|
|
|
// messageError($q, e);
|
|
|
|
|
// })
|
|
|
|
|
// .finally(() => {
|
|
|
|
|
// fecthLists();
|
|
|
|
|
// hideLoader();
|
|
|
|
|
// });
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// ไปหน้ารายชื่อ
|
|
|
|
|
const personalListPage = (id: string) => {
|
|
|
|
|
router.push({
|
|
|
|
|
path: `/change-positions/${id}`,
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function onSave(data: any) {
|
|
|
|
|
// showLoader();
|
|
|
|
|
// http
|
|
|
|
|
// .put(config.API.appointmentPosition(personalId.value), dataAppoint)
|
|
|
|
|
// .then((res) => {
|
|
|
|
|
// modalTree.value = false;
|
|
|
|
|
// success($q, "บันทึกสำเร็จ");
|
|
|
|
|
// })
|
|
|
|
|
// .catch((e) => {
|
|
|
|
|
// messageError($q, e);
|
|
|
|
|
// })
|
|
|
|
|
// .finally(async () => {
|
|
|
|
|
// fecthLists();
|
|
|
|
|
// hideLoader();
|
|
|
|
|
// });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
fecthLists();
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="toptitle text-dark col-12 row items-center">
|
|
|
|
|
รายการออกคำสั่งย้ายสับเปลี่ยนตำแหน่ง
|
|
|
|
|
</div>
|
|
|
|
|
<q-card flat bordered class="col-12 q-mt-sm">
|
|
|
|
|
<q-separator />
|
|
|
|
|
<div class="row q-pa-md">
|
|
|
|
|
<div class="col-12">
|
|
|
|
|
<div class="row col-12">
|
|
|
|
|
<q-btn
|
|
|
|
|
@click="addRound()"
|
|
|
|
|
size="14px"
|
|
|
|
|
flat
|
|
|
|
|
round
|
|
|
|
|
color="primary"
|
|
|
|
|
icon="add"
|
|
|
|
|
>
|
|
|
|
|
<q-tooltip>เพิ่มรอบการย้ายสับเปลี่ยนตำแหน่ง</q-tooltip>
|
|
|
|
|
</q-btn>
|
|
|
|
|
|
|
|
|
|
<q-btn
|
|
|
|
|
@click="sendToCommand()"
|
|
|
|
|
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 q-ml-sm"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-12 q-pt-sm">
|
|
|
|
|
<d-table
|
|
|
|
|
:columns="columns"
|
|
|
|
|
:rows="rows"
|
|
|
|
|
:filter="filterKeyword"
|
|
|
|
|
row-key="citizenId"
|
|
|
|
|
:visible-columns="visibleColumns"
|
|
|
|
|
v-model:pagination="pagination"
|
|
|
|
|
>
|
|
|
|
|
<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>
|
|
|
|
|
<q-th auto-width />
|
|
|
|
|
</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"
|
|
|
|
|
@click="personalListPage(props.row.id)"
|
|
|
|
|
>
|
|
|
|
|
<div v-if="col.name == 'no'">
|
|
|
|
|
{{ props.rowIndex + 1 }}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div v-else-if="col.name == 'createdAt'">
|
|
|
|
|
{{
|
|
|
|
|
props.row.createdAt ? date2Thai(props.row.createdAt) : "-"
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div v-else-if="col.name == 'status'">
|
|
|
|
|
{{ props.row.status ? statusText(props.row.status) : "-" }}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div v-else>
|
|
|
|
|
{{ col.value ? col.value : "-" }}
|
|
|
|
|
</div>
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td auto-width>
|
|
|
|
|
<q-btn
|
|
|
|
|
v-if="
|
|
|
|
|
props.row.status !== 'REPORT' &&
|
|
|
|
|
props.row.status !== 'DONE'
|
|
|
|
|
"
|
|
|
|
|
icon="mdi-dots-vertical"
|
|
|
|
|
size="12px"
|
|
|
|
|
color="grey-7"
|
|
|
|
|
flat
|
|
|
|
|
round
|
|
|
|
|
dense
|
|
|
|
|
>
|
|
|
|
|
<q-menu
|
|
|
|
|
transition-show="jump-down"
|
|
|
|
|
transition-hide="jump-up"
|
|
|
|
|
>
|
|
|
|
|
<q-list dense style="min-width: 250px">
|
|
|
|
|
<q-item
|
|
|
|
|
clickable
|
|
|
|
|
v-close-popup
|
|
|
|
|
@click="openModaledit(props.row)"
|
|
|
|
|
>
|
|
|
|
|
<q-item-section
|
|
|
|
|
style="min-width: 0px"
|
|
|
|
|
avatar
|
|
|
|
|
class="q-py-sm"
|
|
|
|
|
>
|
|
|
|
|
<q-icon color="edit" size="xs" name="edit" />
|
|
|
|
|
</q-item-section>
|
|
|
|
|
<q-item-section>แก้ไข</q-item-section>
|
|
|
|
|
</q-item>
|
|
|
|
|
<q-item
|
|
|
|
|
clickable
|
|
|
|
|
v-close-popup
|
|
|
|
|
@click="clickDelete(props.row.id)"
|
|
|
|
|
>
|
|
|
|
|
<q-item-section
|
|
|
|
|
style="min-width: 0px"
|
|
|
|
|
avatar
|
|
|
|
|
class="q-py-sm"
|
|
|
|
|
>
|
|
|
|
|
<q-tooltip>ลบข้อมูล</q-tooltip>
|
|
|
|
|
<q-icon color="red" size="xs" name="mdi-delete" />
|
|
|
|
|
</q-item-section>
|
|
|
|
|
<q-item-section>ลบ</q-item-section>
|
|
|
|
|
</q-item>
|
|
|
|
|
</q-list>
|
|
|
|
|
</q-menu>
|
|
|
|
|
</q-btn>
|
|
|
|
|
</q-td>
|
|
|
|
|
</q-tr>
|
|
|
|
|
</template>
|
|
|
|
|
</d-table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</q-card>
|
|
|
|
|
|
|
|
|
|
<SendToCommand
|
|
|
|
|
v-model:Modal="modal"
|
|
|
|
|
:clickClose="clickClose"
|
|
|
|
|
:optionsType="optionsType"
|
|
|
|
|
:rows2="rows2"
|
|
|
|
|
v-model:filterKeyword2="filterKeyword2"
|
|
|
|
|
v-model:type="type"
|
|
|
|
|
:nextPage="personalListPage"
|
|
|
|
|
:fecthLists="fecthLists"
|
|
|
|
|
/>
|
2024-06-10 18:00:18 +07:00
|
|
|
|
|
|
|
|
<DialogRound
|
|
|
|
|
v-model:modal="modalRound"
|
|
|
|
|
v-model:edit="editCheck"
|
|
|
|
|
v-model:round="round"
|
|
|
|
|
v-model:id="idRound"
|
|
|
|
|
:getData="fecthLists"
|
|
|
|
|
/>
|
2024-06-10 11:57:27 +07:00
|
|
|
</template>
|
|
|
|
|
|
2024-06-10 18:00:18 +07:00
|
|
|
<style scoped></style>
|