2023-08-15 13:59:38 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, computed, 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 http from "@/plugins/http";
|
|
|
|
|
import config from "@/app.config";
|
|
|
|
|
import DialogOrgTree from "@/modules/05_placement/components/Relocation/RelocationModal.vue";
|
|
|
|
|
import DialogHeader from "@/modules/05_placement/components/PersonalList/DialogHeader.vue";
|
|
|
|
|
|
|
|
|
|
import type { relocationType } from "@/modules/05_placement/interface/response/Relocation";
|
2023-09-22 17:23:38 +07:00
|
|
|
|
|
|
|
|
const transferStore = useTransferDataStore();
|
|
|
|
|
const { statusText } = transferStore;
|
|
|
|
|
|
2023-08-15 13:59:38 +07:00
|
|
|
const personalId = ref<string>("");
|
|
|
|
|
const personal = ref<any[]>([]);
|
|
|
|
|
const modalTree = ref<boolean>(false);
|
|
|
|
|
const selected = ref<relocationType[]>([]);
|
|
|
|
|
const checkSelected = computed(() => {
|
|
|
|
|
if (selected.value.length === 0) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
});
|
2023-08-15 17:21:26 +07:00
|
|
|
|
2023-08-15 13:59:38 +07:00
|
|
|
const $q = useQuasar();
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
const mixin = useCounterMixin();
|
|
|
|
|
|
|
|
|
|
const {
|
|
|
|
|
date2Thai,
|
|
|
|
|
messageError,
|
|
|
|
|
showLoader,
|
|
|
|
|
hideLoader,
|
|
|
|
|
success,
|
|
|
|
|
dialogMessage,
|
2023-08-17 11:40:46 +07:00
|
|
|
dialogRemove,
|
2023-08-15 13:59:38 +07:00
|
|
|
} = mixin;
|
|
|
|
|
|
|
|
|
|
const modal = ref<boolean>(false);
|
|
|
|
|
const visibleColumns = ref<string[]>([
|
|
|
|
|
"no",
|
2023-08-17 09:54:35 +07:00
|
|
|
"citizenId",
|
2023-08-15 13:59:38 +07:00
|
|
|
"fullname",
|
2023-08-17 09:54:35 +07:00
|
|
|
"organizationName",
|
|
|
|
|
"dateOfBirth",
|
2023-08-22 14:02:35 +07:00
|
|
|
"createdAt",
|
2023-08-22 09:15:41 +07:00
|
|
|
"statusText",
|
2023-08-15 13:59:38 +07:00
|
|
|
"btn",
|
|
|
|
|
]);
|
|
|
|
|
const visibleColumns2 = ref<string[]>([
|
|
|
|
|
"no",
|
2023-08-17 09:54:35 +07:00
|
|
|
"citizenId",
|
2023-08-15 13:59:38 +07:00
|
|
|
"fullname",
|
2023-08-17 09:54:35 +07:00
|
|
|
"organizationName",
|
|
|
|
|
"dateOfBirth",
|
2023-08-15 13:59:38 +07:00
|
|
|
]); //ค้นหา คอลัมน์ คอลัมน์ที่แสดง
|
|
|
|
|
const filterKeyword = ref<string>("");
|
|
|
|
|
const filterKeyword2 = ref<string>("");
|
|
|
|
|
const filterRef = ref<any>(null);
|
|
|
|
|
const resetFilter = () => {
|
|
|
|
|
filterKeyword.value = "";
|
|
|
|
|
filterKeyword2.value = "";
|
|
|
|
|
filterRef.value.focus();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const rows = ref<relocationType[]>([]);
|
2023-08-17 09:54:35 +07:00
|
|
|
const rows2 = ref<any[]>([]);
|
2023-08-15 13:59:38 +07:00
|
|
|
const columns = ref<QTableProps["columns"]>([
|
|
|
|
|
{
|
|
|
|
|
name: "no",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ลำดับ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "no",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-08-17 09:54:35 +07:00
|
|
|
name: "citizenId",
|
2023-08-15 13:59:38 +07:00
|
|
|
align: "left",
|
2023-08-17 09:54:35 +07:00
|
|
|
label: "เลขประจำตัวประชาชน",
|
2023-08-15 13:59:38 +07:00
|
|
|
sortable: true,
|
|
|
|
|
field: "fullname",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-08-17 09:54:35 +07:00
|
|
|
name: "fullname",
|
2023-08-15 13:59:38 +07:00
|
|
|
align: "left",
|
2023-08-17 09:54:35 +07:00
|
|
|
label: "ชื่อ-นามสกุล",
|
2023-08-15 13:59:38 +07:00
|
|
|
sortable: true,
|
2023-08-17 09:54:35 +07:00
|
|
|
field: "fullname",
|
2023-08-15 13:59:38 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-08-17 09:54:35 +07:00
|
|
|
name: "organizationName",
|
2023-08-15 13:59:38 +07:00
|
|
|
align: "left",
|
2023-08-17 09:54:35 +07:00
|
|
|
label: "หน่วยงานที่รับโอน",
|
2023-08-15 13:59:38 +07:00
|
|
|
sortable: true,
|
2023-08-17 09:54:35 +07:00
|
|
|
field: "organizationName",
|
2023-08-15 13:59:38 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
2023-08-17 09:54:35 +07:00
|
|
|
sort: (a: string, b: string) =>
|
|
|
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
2023-08-15 13:59:38 +07:00
|
|
|
},
|
|
|
|
|
{
|
2023-08-17 09:54:35 +07:00
|
|
|
name: "dateOfBirth",
|
2023-08-15 13:59:38 +07:00
|
|
|
align: "left",
|
2023-08-17 09:54:35 +07:00
|
|
|
label: "วัน/เดือน/ปี เกิด",
|
2023-08-15 13:59:38 +07:00
|
|
|
sortable: true,
|
2023-08-17 09:54:35 +07:00
|
|
|
field: "dateOfBirth",
|
2023-08-15 13:59:38 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
2023-08-22 14:02:35 +07:00
|
|
|
{
|
|
|
|
|
name: "createdAt",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "วันที่ดำเนินการ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "createdAt",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
|
2023-08-22 09:15:41 +07:00
|
|
|
{
|
|
|
|
|
name: "statusText",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "สถานะ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "statusText",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
2023-08-15 13:59:38 +07:00
|
|
|
{
|
|
|
|
|
name: "btn",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "btn",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
const columns2 = ref<QTableProps["columns"]>([
|
|
|
|
|
{
|
|
|
|
|
name: "no",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ลำดับ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "no",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-08-17 09:54:35 +07:00
|
|
|
name: "citizenId",
|
2023-08-15 13:59:38 +07:00
|
|
|
align: "left",
|
2023-08-17 09:54:35 +07:00
|
|
|
label: "เลขประจำตัวประชาชน",
|
2023-08-15 13:59:38 +07:00
|
|
|
sortable: true,
|
2023-08-17 09:54:35 +07:00
|
|
|
field: "citizenId",
|
2023-08-15 13:59:38 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-08-17 09:54:35 +07:00
|
|
|
name: "fullname",
|
2023-08-15 13:59:38 +07:00
|
|
|
align: "left",
|
2023-08-17 09:54:35 +07:00
|
|
|
label: "ชื่อ-นามสกุล",
|
2023-08-15 13:59:38 +07:00
|
|
|
sortable: true,
|
2023-08-17 09:54:35 +07:00
|
|
|
field: "fullname",
|
2023-08-15 13:59:38 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-08-17 09:54:35 +07:00
|
|
|
name: "organizationName",
|
2023-08-15 13:59:38 +07:00
|
|
|
align: "left",
|
2023-08-17 09:54:35 +07:00
|
|
|
label: "หน่วยงานที่รับโอน",
|
2023-08-15 13:59:38 +07:00
|
|
|
sortable: true,
|
2023-08-17 09:54:35 +07:00
|
|
|
field: "organizationName",
|
2023-08-15 13:59:38 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
2023-08-17 09:54:35 +07:00
|
|
|
sort: (a: string, b: string) =>
|
|
|
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
2023-08-15 13:59:38 +07:00
|
|
|
},
|
|
|
|
|
{
|
2023-08-17 09:54:35 +07:00
|
|
|
name: "dateOfBirth",
|
2023-08-15 13:59:38 +07:00
|
|
|
align: "left",
|
2023-08-17 09:54:35 +07:00
|
|
|
label: "วัน/เดือน/ปี เกิด",
|
2023-08-15 13:59:38 +07:00
|
|
|
sortable: true,
|
2023-08-17 09:54:35 +07:00
|
|
|
field: "dateOfBirth",
|
2023-08-15 13:59:38 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
//--------------(ปุ่มลบ)----------------//
|
|
|
|
|
|
|
|
|
|
const openDetail = (id: string) => {
|
|
|
|
|
router.push(`/relocation/detail/${id}`);
|
|
|
|
|
};
|
|
|
|
|
const openModal = () => (modal.value = true);
|
|
|
|
|
const closeModal = () => (modal.value = false);
|
|
|
|
|
const openModalOrder = () => {
|
|
|
|
|
openModal();
|
|
|
|
|
const row = rows.value.filter(
|
|
|
|
|
(item: relocationType) =>
|
|
|
|
|
item.status == "WAITTING" ||
|
|
|
|
|
item.status == "PENDING" ||
|
|
|
|
|
item.status == "APPROVE"
|
|
|
|
|
);
|
|
|
|
|
rows2.value = row;
|
|
|
|
|
};
|
|
|
|
|
const openModalTree = (id: string) => {
|
|
|
|
|
personalId.value = id;
|
|
|
|
|
console.log(personalId.value);
|
|
|
|
|
personal.value = rows.value.filter((e: any) => e.id === id);
|
|
|
|
|
modalTree.value = true;
|
|
|
|
|
};
|
|
|
|
|
const getData = async () => {
|
|
|
|
|
showLoader();
|
|
|
|
|
await http
|
|
|
|
|
.get(config.API.relocationMain())
|
|
|
|
|
.then((res: any) => {
|
|
|
|
|
const data = res.data.result;
|
|
|
|
|
console.log("data==>", data);
|
|
|
|
|
rows.value = data.map((item: relocationType) => ({
|
|
|
|
|
fullname: `${item.prefix}${item.firstname} ${item.lastname}`,
|
|
|
|
|
id: item.id,
|
|
|
|
|
citizenId: item.citizenId,
|
|
|
|
|
prefix: item.prefix,
|
|
|
|
|
firstname: item.firstname,
|
|
|
|
|
lastname: item.lastname,
|
2023-08-17 09:54:35 +07:00
|
|
|
dateOfBirth: date2Thai(item.dateOfBirth),
|
2023-08-15 13:59:38 +07:00
|
|
|
gender: item.gender,
|
|
|
|
|
status: item.status,
|
2023-08-17 11:40:46 +07:00
|
|
|
statusText: statusText(item.status),
|
2023-08-15 13:59:38 +07:00
|
|
|
recruitDate: item.recruitDate,
|
|
|
|
|
positionNumber: item.positionNumber,
|
|
|
|
|
positionPath: item.positionPath,
|
|
|
|
|
positionPathSide: item.positionPathSide,
|
|
|
|
|
positionType: item.positionType,
|
|
|
|
|
positionLine: item.positionLine,
|
|
|
|
|
positionLevel: item.positionLevel,
|
|
|
|
|
posNoId: item.posNoId,
|
|
|
|
|
positionId: item.positionId,
|
|
|
|
|
positionPathSideId: item.positionPathSideId,
|
|
|
|
|
positionTypeId: item.positionTypeId,
|
|
|
|
|
positionLineId: item.positionLineId,
|
|
|
|
|
positionLevelId: item.positionLevelId,
|
|
|
|
|
organizationPositionId: item.organizationPositionId,
|
|
|
|
|
organizationName: item.organizationName,
|
|
|
|
|
organizationShortName: item.organizationShortName,
|
|
|
|
|
isActive: item.isActive,
|
|
|
|
|
reason: item.reason,
|
|
|
|
|
educationOld: item.educationOld,
|
|
|
|
|
salary: item.salary,
|
|
|
|
|
positionTypeOld: item.positionTypeOld,
|
|
|
|
|
positionLevelOld: item.positionLevelOld,
|
|
|
|
|
positionNumberOld: item.positionNumberOld,
|
|
|
|
|
organizationPositionOld: item.organizationPositionOld,
|
2023-08-22 14:02:35 +07:00
|
|
|
createdAt:date2Thai(item.createdAt),
|
2023-08-15 13:59:38 +07:00
|
|
|
}));
|
|
|
|
|
console.log(rows.value);
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
// messageError($q, e);
|
|
|
|
|
})
|
|
|
|
|
.finally(() => {
|
|
|
|
|
hideLoader();
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
const saveOrder = async () => {
|
|
|
|
|
const id = selected.value.map((item) => item.id);
|
|
|
|
|
const body = {
|
|
|
|
|
id,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
showLoader();
|
|
|
|
|
await http
|
|
|
|
|
.post(config.API.relocationMainReport(), body)
|
|
|
|
|
.then((res: any) => {
|
|
|
|
|
// const data = res.data.result;
|
|
|
|
|
// console.log(data);
|
|
|
|
|
success($q, "ส่งไปออกคำสั่งย้าย");
|
|
|
|
|
closeModal();
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
messageError($q, e);
|
|
|
|
|
})
|
|
|
|
|
.finally(async () => {
|
|
|
|
|
await getData();
|
|
|
|
|
hideLoader();
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
const deleteData = async (id: string) => {
|
|
|
|
|
await http
|
|
|
|
|
.delete(config.API.relocationMainDelete(id))
|
|
|
|
|
.then((res) => {
|
|
|
|
|
success($q, "ลบข้อมูลสำเร็จ");
|
|
|
|
|
console.log(res);
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
messageError($q, e);
|
|
|
|
|
})
|
|
|
|
|
.finally(async () => {
|
|
|
|
|
await getData();
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const clickDelete = async (name: string, id: string) => {
|
2023-08-17 11:40:46 +07:00
|
|
|
dialogRemove(
|
2023-08-15 13:59:38 +07:00
|
|
|
$q,
|
2023-08-17 11:40:46 +07:00
|
|
|
async () => {
|
|
|
|
|
await deleteData(id);
|
|
|
|
|
await getData();
|
|
|
|
|
},
|
|
|
|
|
`ลบข้อมูลของ ${name}`
|
2023-08-15 13:59:38 +07:00
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
const closeModalTree = async () => {
|
|
|
|
|
await getData();
|
|
|
|
|
modalTree.value = false;
|
|
|
|
|
};
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
await getData();
|
|
|
|
|
});
|
2023-08-22 17:06:53 +07:00
|
|
|
const pagination = ref({
|
|
|
|
|
sortBy: "createdAt",
|
|
|
|
|
descending: true,
|
|
|
|
|
page: 1,
|
|
|
|
|
rowsPerPage: 10,
|
|
|
|
|
});
|
2023-08-15 13:59:38 +07:00
|
|
|
</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="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 q-ml-sm"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-12 q-pt-sm">
|
|
|
|
|
<d-table
|
|
|
|
|
:columns="columns"
|
|
|
|
|
:rows="rows"
|
|
|
|
|
:filter="filterKeyword"
|
|
|
|
|
row-key="id"
|
|
|
|
|
:visible-columns="visibleColumns"
|
2023-08-22 17:06:53 +07:00
|
|
|
v-model:pagination="pagination"
|
2023-08-15 13:59:38 +07:00
|
|
|
>
|
|
|
|
|
<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-tr>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:body="props">
|
|
|
|
|
<q-tr :props="props" class="cursor-pointer">
|
|
|
|
|
<q-td key="no" :props="props" @click="openDetail(props.row.id)">
|
|
|
|
|
{{ props.rowIndex + 1 }}
|
|
|
|
|
</q-td>
|
2023-08-17 09:54:35 +07:00
|
|
|
<q-td
|
|
|
|
|
key="citizenId"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="openDetail(props.row.id)"
|
|
|
|
|
>
|
|
|
|
|
{{ props.row.citizenId !== null ? props.row.citizenId : "-" }}
|
|
|
|
|
</q-td>
|
2023-08-15 13:59:38 +07:00
|
|
|
<q-td
|
|
|
|
|
key="fullname"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="openDetail(props.row.id)"
|
|
|
|
|
>
|
|
|
|
|
{{ props.row.fullname !== null ? props.row.fullname : "-" }}
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td
|
2023-08-17 09:54:35 +07:00
|
|
|
key="organizationName"
|
2023-08-15 13:59:38 +07:00
|
|
|
:props="props"
|
|
|
|
|
@click="openDetail(props.row.id)"
|
|
|
|
|
>
|
2023-08-17 09:54:35 +07:00
|
|
|
<div
|
|
|
|
|
v-if="
|
|
|
|
|
props.row.organizationName !== null ||
|
|
|
|
|
props.row.positionPath !== null
|
|
|
|
|
"
|
|
|
|
|
>
|
|
|
|
|
<div class="col-4">
|
|
|
|
|
<div class="text-weight-medium">
|
|
|
|
|
{{
|
2023-08-17 11:40:46 +07:00
|
|
|
props.row.organizationName !== null
|
|
|
|
|
? props.row.organizationName
|
|
|
|
|
: "-"
|
2023-08-17 09:54:35 +07:00
|
|
|
}}
|
|
|
|
|
{{
|
|
|
|
|
props.row.organizationShortName !== null
|
|
|
|
|
? `(${props.row.organizationShortName})`
|
|
|
|
|
: ""
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="text-weight-light">
|
|
|
|
|
{{
|
|
|
|
|
props.row.positionPath !== null
|
|
|
|
|
? props.row.positionPath
|
|
|
|
|
: "-"
|
|
|
|
|
}}
|
|
|
|
|
{{
|
|
|
|
|
props.row.positionNumber !== null
|
|
|
|
|
? `(${props.row.positionNumber})`
|
|
|
|
|
: ""
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else>
|
|
|
|
|
<div class="col-4">
|
|
|
|
|
<div class="text-weight-medium">-</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-08-17 11:40:46 +07:00
|
|
|
</q-td>
|
2023-08-15 13:59:38 +07:00
|
|
|
<q-td
|
2023-08-17 09:54:35 +07:00
|
|
|
key="dateOfBirth"
|
2023-08-15 13:59:38 +07:00
|
|
|
:props="props"
|
|
|
|
|
@click="openDetail(props.row.id)"
|
|
|
|
|
>
|
|
|
|
|
{{
|
2023-08-17 11:40:46 +07:00
|
|
|
props.row.dateOfBirth !== null ? props.row.dateOfBirth : "-"
|
2023-08-15 13:59:38 +07:00
|
|
|
}}
|
|
|
|
|
</q-td>
|
2023-08-22 14:02:35 +07:00
|
|
|
<q-td
|
|
|
|
|
key="createdAt"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="openDetail(props.row.id)"
|
|
|
|
|
>
|
|
|
|
|
{{ props.row.createdAt }}
|
|
|
|
|
</q-td>
|
2023-08-15 13:59:38 +07:00
|
|
|
<q-td
|
|
|
|
|
key="organizationPositionOld"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="openDetail(props.row.id)"
|
|
|
|
|
>
|
|
|
|
|
<div class="table_ellipsis">
|
|
|
|
|
{{
|
|
|
|
|
props.row.organizationPositionOld !== null
|
|
|
|
|
? props.row.organizationPositionOld
|
|
|
|
|
: "-"
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td
|
|
|
|
|
key="organization"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="openDetail(props.row.id)"
|
|
|
|
|
>
|
|
|
|
|
<div class="table_ellipsis">
|
|
|
|
|
{{
|
|
|
|
|
props.row.organization !== null
|
|
|
|
|
? props.row.organization
|
|
|
|
|
: "-"
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td
|
|
|
|
|
key="statusText"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="openDetail(props.row.id)"
|
|
|
|
|
>
|
|
|
|
|
{{
|
|
|
|
|
props.row.statusText !== null ? props.row.statusText : "-"
|
|
|
|
|
}}
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td auto-width>
|
|
|
|
|
<q-btn
|
2023-08-22 09:15:41 +07:00
|
|
|
v-if="props.row.status !== 'DONE' && props.row.status !== 'REPORT'"
|
2023-08-15 13:59:38 +07:00
|
|
|
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: 100px">
|
|
|
|
|
<q-item
|
|
|
|
|
clickable
|
|
|
|
|
v-close-popup
|
|
|
|
|
@click="openModalTree(props.row.id)"
|
|
|
|
|
>
|
|
|
|
|
<q-item-section
|
|
|
|
|
style="min-width: 0px"
|
|
|
|
|
avatar
|
|
|
|
|
class="q-py-sm"
|
|
|
|
|
>
|
|
|
|
|
<q-icon
|
|
|
|
|
color="primary"
|
|
|
|
|
size="xs"
|
|
|
|
|
name="mdi-bookmark-outline"
|
|
|
|
|
/>
|
|
|
|
|
</q-item-section>
|
|
|
|
|
<q-item-section
|
|
|
|
|
>เลือกหน่วยงานที่รับย้าย</q-item-section
|
|
|
|
|
>
|
|
|
|
|
</q-item>
|
|
|
|
|
<q-item
|
|
|
|
|
clickable
|
|
|
|
|
v-close-popup
|
|
|
|
|
@click="clickDelete(props.row.fullname, 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>
|
|
|
|
|
|
|
|
|
|
<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
|
2023-08-17 11:40:46 +07:00
|
|
|
:columns="columns2"
|
2023-08-15 13:59:38 +07:00
|
|
|
:rows="rows2"
|
|
|
|
|
:filter="filterKeyword2"
|
2023-08-15 17:21:26 +07:00
|
|
|
row-key="id"
|
2023-08-15 13:59:38 +07:00
|
|
|
flat
|
|
|
|
|
: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>
|
2023-08-17 09:54:35 +07:00
|
|
|
<q-td key="citizenId" :props="props">
|
|
|
|
|
{{ props.row.citizenId }}
|
|
|
|
|
</q-td>
|
2023-08-15 13:59:38 +07:00
|
|
|
<q-td key="fullname" :props="props">
|
|
|
|
|
{{ props.row.fullname }}
|
|
|
|
|
</q-td>
|
2023-08-17 11:40:46 +07:00
|
|
|
<q-td key="organizationName" :props="props">
|
2023-08-17 09:54:35 +07:00
|
|
|
<div
|
|
|
|
|
v-if="
|
|
|
|
|
props.row.organizationName !== null ||
|
|
|
|
|
props.row.positionPath !== null
|
|
|
|
|
"
|
|
|
|
|
>
|
|
|
|
|
<div class="col-4">
|
|
|
|
|
<div class="text-weight-medium">
|
2023-08-17 11:40:46 +07:00
|
|
|
{{
|
|
|
|
|
props.row.organizationName !== null
|
|
|
|
|
? props.row.organizationName
|
|
|
|
|
: "-"
|
|
|
|
|
}}
|
2023-08-17 09:54:35 +07:00
|
|
|
{{
|
|
|
|
|
props.row.organizationShortName !== null
|
|
|
|
|
? `(${props.row.organizationShortName})`
|
|
|
|
|
: ""
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="text-weight-light">
|
|
|
|
|
{{
|
|
|
|
|
props.row.positionPath !== null
|
|
|
|
|
? props.row.positionPath
|
|
|
|
|
: "-"
|
|
|
|
|
}}
|
|
|
|
|
{{
|
|
|
|
|
props.row.positionNumber !== null
|
|
|
|
|
? `(${props.row.positionNumber})`
|
|
|
|
|
: ""
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-08-15 13:59:38 +07:00
|
|
|
</div>
|
2023-08-17 09:54:35 +07:00
|
|
|
<div v-else>
|
|
|
|
|
<div class="col-4">
|
|
|
|
|
<div class="text-weight-medium">-</div>
|
|
|
|
|
</div>
|
2023-08-15 13:59:38 +07:00
|
|
|
</div>
|
|
|
|
|
</q-td>
|
2023-08-17 09:54:35 +07:00
|
|
|
<q-td key="dateOfBirth" :props="props">
|
|
|
|
|
{{ props.row.dateOfBirth }}
|
2023-08-15 13:59:38 +07:00
|
|
|
</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-15 17:21:26 +07:00
|
|
|
<DialogOrgTree
|
2023-08-15 13:59:38 +07:00
|
|
|
v-model:modal="modalTree"
|
|
|
|
|
:close="closeModalTree"
|
|
|
|
|
:personal="personal"
|
|
|
|
|
:personalId="personalId"
|
2023-08-15 17:21:26 +07:00
|
|
|
/>
|
2023-08-15 13:59:38 +07:00
|
|
|
<!-- :personalId="personalId" -->
|
|
|
|
|
</template>
|
|
|
|
|
<style scoped lang="scss"></style>
|