2023-08-15 17:58:41 +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 DialogHeader from "@/modules/05_placement/components/AppointMent/DialogHeader.vue";
|
|
|
|
|
import DialogOrgTree from "@/modules/05_placement/components/AppointMent/AppointmentModal.vue";
|
|
|
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
|
|
|
import http from "@/plugins/http";
|
|
|
|
|
import config from "@/app.config";
|
2023-08-22 14:02:35 +07:00
|
|
|
import { WeekNumberContainer } from "@fullcalendar/core/internal";
|
2023-08-15 17:58:41 +07:00
|
|
|
const mixin = useCounterMixin(); //เรียกฟังก์ชันกลาง
|
|
|
|
|
const {
|
|
|
|
|
showLoader,
|
|
|
|
|
hideLoader,
|
|
|
|
|
dateText,
|
|
|
|
|
success,
|
|
|
|
|
messageError,
|
|
|
|
|
date2Thai,
|
|
|
|
|
dialogConfirm,
|
|
|
|
|
dialogRemove,
|
|
|
|
|
} = mixin;
|
|
|
|
|
|
|
|
|
|
const selected = ref([]);
|
|
|
|
|
const checkSelected = computed(() => {
|
|
|
|
|
if (selected.value.length === 0 || type.value === "") {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// const add = () => {
|
|
|
|
|
// router.push(`/receive/add`);
|
|
|
|
|
// };
|
|
|
|
|
|
|
|
|
|
const clickClose = () => {
|
|
|
|
|
modal.value = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const $q = useQuasar();
|
|
|
|
|
const modal = ref<boolean>(false);
|
|
|
|
|
const popup = () => {
|
|
|
|
|
modal.value = true;
|
|
|
|
|
selected.value = [];
|
|
|
|
|
fecthTypeOption();
|
|
|
|
|
};
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
|
|
const modalTree = ref<boolean>(false);
|
|
|
|
|
const personal = ref<any[]>([]);
|
|
|
|
|
const personalId = ref<string>("");
|
|
|
|
|
const visibleColumns = ref<string[]>([
|
|
|
|
|
"no",
|
|
|
|
|
"citizenId",
|
|
|
|
|
"fullname",
|
|
|
|
|
"organizationName",
|
|
|
|
|
"birthday",
|
2023-08-22 14:02:35 +07:00
|
|
|
"createdAt",
|
2023-08-15 17:58:41 +07:00
|
|
|
"status",
|
|
|
|
|
]);
|
|
|
|
|
const visibleColumns2 = ref<string[]>([
|
|
|
|
|
"no",
|
|
|
|
|
"citizenId",
|
|
|
|
|
"fullname",
|
|
|
|
|
"organizationName",
|
|
|
|
|
"birthday",
|
|
|
|
|
]); //ค้นหา คอลัมน์ คอลัมน์ที่แสดง
|
|
|
|
|
const filterKeyword = ref<string>("");
|
|
|
|
|
const filterKeyword2 = ref<string>("");
|
|
|
|
|
const filterRef = ref<any>(null);
|
|
|
|
|
const resetFilter = () => {
|
|
|
|
|
filterKeyword.value = "";
|
|
|
|
|
filterKeyword2.value = "";
|
|
|
|
|
filterRef.value.focus();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const optionsType = ref<any[]>([]);
|
|
|
|
|
const type = ref<string>("");
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
fecthlistappointment();
|
|
|
|
|
});
|
|
|
|
|
const listRecevice = ref<any>([]);
|
|
|
|
|
const fecthlistappointment = async () => {
|
|
|
|
|
showLoader();
|
|
|
|
|
rows.value = [];
|
|
|
|
|
await http
|
|
|
|
|
.get(config.API.appointmentMain())
|
|
|
|
|
.then((res) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
let response = res.data.result;
|
|
|
|
|
listRecevice.value = response;
|
2023-08-30 14:39:35 +07:00
|
|
|
console.log(response);
|
2023-08-15 17:58:41 +07:00
|
|
|
rows.value = response.map((e: any) => ({
|
|
|
|
|
personalId: e.id,
|
|
|
|
|
citizenId: e.citizenId,
|
2023-08-30 16:08:44 +07:00
|
|
|
fullname: e.prefix + e.firstname + " " + e.lastname,
|
2023-08-15 17:58:41 +07:00
|
|
|
organizationName:
|
|
|
|
|
e.organizationName +
|
|
|
|
|
" " +
|
|
|
|
|
e.organizationShortName +
|
|
|
|
|
" " +
|
|
|
|
|
e.positionNumber +
|
|
|
|
|
" " +
|
|
|
|
|
e.positionPath,
|
|
|
|
|
orgName: e.organizationName,
|
|
|
|
|
organizationShortName: e.organizationShortName,
|
|
|
|
|
positionNumber: e.positionNumber,
|
|
|
|
|
positionPath: e.positionPath,
|
|
|
|
|
status: status(e.status),
|
2023-08-30 16:08:44 +07:00
|
|
|
createdAt: date2Thai(e.createdAt),
|
|
|
|
|
|
2023-08-16 22:08:59 +07:00
|
|
|
birthday: e.dateOfBirth == null ? "-" : date2Thai(e.dateOfBirth),
|
2023-08-15 17:58:41 +07:00
|
|
|
}));
|
|
|
|
|
// console.log(rows.value);
|
2023-08-30 16:08:44 +07:00
|
|
|
rows2.value = rows.value.filter(
|
|
|
|
|
(e: any) =>
|
|
|
|
|
e.orgName !== null &&
|
|
|
|
|
e.status !== "ส่งรายชื่อไปออกคำสั่ง" &&
|
|
|
|
|
e.status !== "ออกคำสั่งเสร็จแล้ว"
|
|
|
|
|
);
|
2023-08-15 17:58:41 +07:00
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
console.log(typeof e);
|
|
|
|
|
})
|
|
|
|
|
.finally(() => {
|
|
|
|
|
hideLoader();
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
const fecthTypeOption = async () => {
|
|
|
|
|
type.value = "";
|
|
|
|
|
await http
|
|
|
|
|
.get(config.API.typeOrder())
|
|
|
|
|
.then((res) => {
|
|
|
|
|
optionsType.value = res.data.result.filter(
|
2023-08-30 16:08:44 +07:00
|
|
|
(e: any) =>
|
|
|
|
|
e.commandCode === "C-PM-05" ||
|
|
|
|
|
e.commandCode === "C-PM-06" ||
|
|
|
|
|
e.commandCode === "C-PM-07"
|
2023-08-15 17:58:41 +07:00
|
|
|
);
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
messageError($q, e);
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2023-08-19 21:56:00 +07:00
|
|
|
const rows = ref<any>([]);
|
|
|
|
|
const rows2 = ref<any>([]);
|
2023-08-15 17:58:41 +07:00
|
|
|
const columns = ref<QTableProps["columns"]>([
|
|
|
|
|
{
|
|
|
|
|
name: "no",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ลำดับ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "no",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "citizenId",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "เลขประจำตัวประชาชน",
|
|
|
|
|
sortable: true,
|
2023-08-16 22:08:59 +07:00
|
|
|
field: "citizenId",
|
2023-08-15 17:58:41 +07:00
|
|
|
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: "organizationName",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "หน่วยงานที่รับการแต่งตั้ง-เลื่อน",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "organizationName",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "birthday",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "วัน/เดือน/ปี เกิด",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "birthday",
|
|
|
|
|
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-15 17:58:41 +07:00
|
|
|
{
|
|
|
|
|
name: "status",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "สถานะ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "status",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
]);
|
2023-08-22 14:02:35 +07:00
|
|
|
|
2023-08-15 17:58:41 +07:00
|
|
|
const columns2 = ref<QTableProps["columns"]>([
|
|
|
|
|
{
|
|
|
|
|
name: "no",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ลำดับ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "no",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "citizenId",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "เลขประจำตัวประชาชน",
|
|
|
|
|
sortable: true,
|
2023-08-16 22:08:59 +07:00
|
|
|
field: "citizenId",
|
2023-08-15 17:58:41 +07:00
|
|
|
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: "organizationName",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "หน่วยงานที่รับการแต่งตั้ง-เลื่อน",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "organizationName",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
sort: (a: string, b: string) =>
|
|
|
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "birthday",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "วัน/เดือน/ปี เกิด",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "birthday",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const openModalTree = (id: string) => {
|
|
|
|
|
personalId.value = id;
|
|
|
|
|
personal.value = listRecevice.value.filter((e: any) => e.id === id);
|
|
|
|
|
modalTree.value = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const clickDelete = (id: string) => {
|
|
|
|
|
dialogRemove($q, () => deleteAppoint(id));
|
|
|
|
|
};
|
|
|
|
|
const deleteAppoint = async (id: string) => {
|
|
|
|
|
showLoader();
|
|
|
|
|
await http
|
|
|
|
|
.delete(config.API.appointmentDelete(id))
|
|
|
|
|
.then(() => {
|
|
|
|
|
success($q, "ลบข้อมูลสำเร็จ");
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
messageError($q, e);
|
|
|
|
|
})
|
|
|
|
|
.finally(() => {
|
|
|
|
|
fecthlistappointment();
|
|
|
|
|
hideLoader();
|
|
|
|
|
});
|
|
|
|
|
};
|
2023-08-30 16:08:44 +07:00
|
|
|
|
2023-08-15 17:58:41 +07:00
|
|
|
const clickAddlist = () => {
|
|
|
|
|
dialogConfirm($q, () => createdAppoint());
|
|
|
|
|
};
|
|
|
|
|
const createdAppoint = async () => {
|
2023-08-30 19:23:57 +07:00
|
|
|
let pId: string[] = [];
|
|
|
|
|
selected.value.forEach((e: any) => {
|
|
|
|
|
pId.push(e.personalId);
|
|
|
|
|
});
|
|
|
|
|
let data = {
|
|
|
|
|
id: pId,
|
|
|
|
|
};
|
|
|
|
|
// console.log(data);
|
|
|
|
|
showLoader();
|
|
|
|
|
await http
|
|
|
|
|
.put(config.API.apppointmentReport(type.value), data)
|
|
|
|
|
.then((res: any) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
success($q, "บันทึกสำเร็จ");
|
|
|
|
|
})
|
|
|
|
|
.catch((e: any) => {
|
|
|
|
|
// console.log(e);
|
|
|
|
|
messageError($q, e);
|
|
|
|
|
})
|
|
|
|
|
.finally(() => {
|
|
|
|
|
hideLoader();
|
|
|
|
|
fecthlistappointment();
|
|
|
|
|
selected.value = [];
|
|
|
|
|
modal.value = false;
|
2023-08-30 16:08:44 +07:00
|
|
|
});
|
2023-08-15 17:58:41 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const closeModalTree = async () => {
|
|
|
|
|
await fecthlistappointment();
|
|
|
|
|
modalTree.value = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const nextPage = (row: any) => {
|
|
|
|
|
router.push({
|
|
|
|
|
path: `appoint-promote/detail/${row.personalId}`,
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
const status = (val: string) => {
|
|
|
|
|
switch (val) {
|
|
|
|
|
case "WAITTING":
|
|
|
|
|
return "รอดำเนินการ";
|
|
|
|
|
case "PENDING":
|
|
|
|
|
return "เลือกตำแหน่งแล้ว";
|
|
|
|
|
case "REPORT":
|
|
|
|
|
return "ส่งรายชื่อไปออกคำสั่ง";
|
|
|
|
|
case "DONE":
|
|
|
|
|
return "ออกคำสั่งเสร็จแล้ว";
|
|
|
|
|
default:
|
|
|
|
|
return "-";
|
|
|
|
|
}
|
|
|
|
|
};
|
2023-08-22 17:06:53 +07:00
|
|
|
const pagination = ref({
|
|
|
|
|
sortBy: "createdAt",
|
|
|
|
|
descending: true,
|
|
|
|
|
page: 1,
|
|
|
|
|
rowsPerPage: 10,
|
|
|
|
|
});
|
2023-08-15 17:58:41 +07:00
|
|
|
</script>
|
|
|
|
|
<template>
|
|
|
|
|
<div class="toptitle text-dark col-12 row items-center">
|
2023-08-30 16:08:44 +07:00
|
|
|
รายการแต่งตั้ง-เลื่อน-ย้าย
|
2023-08-15 17:58:41 +07:00
|
|
|
</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 flat round color="primary" @click="add" icon="mdi-plus">
|
|
|
|
|
<q-tooltip>เพิ่มข้อมูล</q-tooltip>
|
|
|
|
|
</q-btn> -->
|
|
|
|
|
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-btn @click="popup()" size="14px" flat round color="add" icon="mdi-account-arrow-right">
|
2023-08-30 16:08:44 +07:00
|
|
|
<q-tooltip>ส่งไปออกคำสั่งแต่งตั้ง-เลื่อน-ย้าย</q-tooltip>
|
2023-08-15 17:58:41 +07:00
|
|
|
</q-btn>
|
|
|
|
|
|
|
|
|
|
<q-space />
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-input class="col-xs-12 col-sm-3 col-md-2" standout dense v-model="filterKeyword" ref="filterRef" outlined
|
|
|
|
|
debounce="300" placeholder="ค้นหา">
|
2023-08-15 17:58:41 +07:00
|
|
|
<template v-slot:append>
|
|
|
|
|
<q-icon v-if="filterKeyword == ''" name="search" />
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-icon v-if="filterKeyword !== ''" name="clear" class="cursor-pointer" @click="resetFilter" />
|
2023-08-15 17:58:41 +07:00
|
|
|
</template>
|
|
|
|
|
</q-input>
|
|
|
|
|
|
2023-08-30 19:23:57 +07:00
|
|
|
<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" />
|
2023-08-15 17:58:41 +07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-12 q-pt-sm">
|
2023-08-30 19:23:57 +07:00
|
|
|
<d-table :columns="columns" :rows="rows" :filter="filterKeyword" row-key="citizenId"
|
|
|
|
|
:visible-columns="visibleColumns" v-model:pagination="pagination">
|
2023-08-15 17:58:41 +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-th auto-width />
|
|
|
|
|
</q-tr>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:body="props">
|
|
|
|
|
<q-tr :props="props" class="cursor-pointer">
|
|
|
|
|
<q-td key="no" :props="props" @click="nextPage(props.row)">
|
|
|
|
|
{{ props.rowIndex + 1 }}
|
|
|
|
|
</q-td>
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-td key="citizenId" :props="props" @click="nextPage(props.row)">
|
2023-08-15 17:58:41 +07:00
|
|
|
{{ props.row.citizenId }}
|
|
|
|
|
</q-td>
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-td key="fullname" :props="props" @click="nextPage(props.row)">
|
2023-08-15 17:58:41 +07:00
|
|
|
{{ props.row.fullname }}
|
|
|
|
|
</q-td>
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-td key="organizationName" :props="props" @click="nextPage(props.row)">
|
|
|
|
|
<div v-if="props.row.orgName !== null ||
|
|
|
|
|
props.row.positionPath !== null
|
|
|
|
|
">
|
2023-08-15 17:58:41 +07:00
|
|
|
<div class="col-4">
|
|
|
|
|
<div class="text-weight-medium">
|
|
|
|
|
{{
|
|
|
|
|
props.row.orgName !== null ? props.row.orgName : "-"
|
|
|
|
|
}}
|
|
|
|
|
{{
|
|
|
|
|
props.row.organizationShortName !== null
|
2023-08-30 19:23:57 +07:00
|
|
|
? `(${props.row.organizationShortName})`
|
|
|
|
|
: ""
|
2023-08-15 17:58:41 +07:00
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="text-weight-light">
|
|
|
|
|
{{
|
|
|
|
|
props.row.positionPath !== null
|
2023-08-30 19:23:57 +07:00
|
|
|
? props.row.positionPath
|
|
|
|
|
: "-"
|
2023-08-15 17:58:41 +07:00
|
|
|
}}
|
|
|
|
|
{{
|
|
|
|
|
props.row.positionNumber !== null
|
2023-08-30 19:23:57 +07:00
|
|
|
? `(${props.row.positionNumber})`
|
|
|
|
|
: ""
|
2023-08-15 17:58:41 +07:00
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else>
|
|
|
|
|
<div class="col-4">
|
|
|
|
|
<div class="text-weight-medium">-</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</q-td>
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-td key="birthday" :props="props" @click="nextPage(props.row)">
|
2023-08-15 17:58:41 +07:00
|
|
|
{{ props.row.birthday }}
|
|
|
|
|
</q-td>
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-td key="createdAt" :props="props" @click="nextPage(props.row)">
|
2023-08-22 14:02:35 +07:00
|
|
|
{{ props.row.createdAt }}
|
|
|
|
|
</q-td>
|
2023-08-15 17:58:41 +07:00
|
|
|
<q-td key="status" :props="props" @click="nextPage(props.row)">
|
|
|
|
|
{{ props.row.status }}
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td auto-width>
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-btn v-if="props.row.status !== 'ส่งรายชื่อไปออกคำสั่ง' &&
|
|
|
|
|
props.row.status !== 'ออกคำสั่งแล้ว'
|
|
|
|
|
" icon="mdi-dots-vertical" size="12px" color="grey-7" flat round dense>
|
|
|
|
|
<q-menu transition-show="jump-down" transition-hide="jump-up">
|
2023-08-15 17:58:41 +07:00
|
|
|
<q-list dense style="min-width: 100px">
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-item clickable v-close-popup @click="openModalTree(props.row.personalId)">
|
|
|
|
|
<q-item-section style="min-width: 0px" avatar class="q-py-sm">
|
|
|
|
|
<q-icon color="primary" size="xs" name="mdi-bookmark-outline" />
|
2023-08-15 17:58:41 +07:00
|
|
|
</q-item-section>
|
2023-08-30 16:08:44 +07:00
|
|
|
<q-item-section>เลือกหน่วยงาน/ตำแหน่ง</q-item-section>
|
2023-08-15 17:58:41 +07:00
|
|
|
</q-item>
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-item clickable v-close-popup @click="clickDelete(props.row.personalId)">
|
|
|
|
|
<q-item-section style="min-width: 0px" avatar class="q-py-sm">
|
2023-08-15 17:58:41 +07:00
|
|
|
<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">
|
2023-09-01 09:43:44 +07:00
|
|
|
<DialogHeader title="ส่งไปออกคำสั่ง" :close="clickClose" />
|
2023-08-15 17:58:41 +07:00
|
|
|
<q-separator />
|
|
|
|
|
<q-card-section class="q-pt-none">
|
|
|
|
|
<div class="row justify-between">
|
|
|
|
|
<div class="col-5">
|
|
|
|
|
<q-toolbar style="padding: 0">
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-select outlined dense v-model="type" :options="optionsType" label="คำสั่งแต่งตั่ง-เลื่อน-ย้าย"
|
|
|
|
|
style="width: 400px; max-width: auto" emit-value map-options option-label="name" option-value="id" />
|
2023-08-15 17:58:41 +07:00
|
|
|
</q-toolbar>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-5">
|
|
|
|
|
<q-toolbar style="padding: 0">
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-input borderless outlined dense debounce="300" v-model="filterKeyword2" placeholder="ค้นหา"
|
|
|
|
|
style="width: 850px; max-width: auto">
|
2023-08-15 17:58:41 +07:00
|
|
|
<template v-slot:append>
|
|
|
|
|
<q-icon v-if="filterKeyword2 == ''" name="search" />
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-icon v-if="filterKeyword2 !== ''" name="clear" class="cursor-pointer" @click="resetFilter" />
|
2023-08-15 17:58:41 +07:00
|
|
|
</template>
|
|
|
|
|
</q-input>
|
2023-08-30 19:23:57 +07:00
|
|
|
<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" />
|
2023-08-15 17:58:41 +07:00
|
|
|
</q-toolbar>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2023-08-30 19:23:57 +07:00
|
|
|
<d-table :columns="columns2" :rows="rows2" :filter="filterKeyword2" row-key="personalId" flat
|
|
|
|
|
:visible-columns="visibleColumns2" selection="multiple" v-model:selected="selected">
|
2023-08-15 17:58:41 +07:00
|
|
|
<template v-slot:header-selection="scope">
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-checkbox keep-color color="primary" dense v-model="scope.selected" />
|
2023-08-15 17:58:41 +07:00
|
|
|
</template>
|
|
|
|
|
<!-- <template v-slot:body-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>
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-checkbox keep-color color="primary" dense v-model="props.selected" />
|
2023-08-15 17:58:41 +07:00
|
|
|
</q-td>
|
|
|
|
|
<q-td key="no" :props="props">
|
|
|
|
|
{{ props.rowIndex + 1 }}
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td key="citizenId" :props="props" @click="nextPage(props.row)">
|
|
|
|
|
{{ props.row.citizenId }}
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td key="fullname" :props="props" @click="nextPage(props.row)">
|
|
|
|
|
{{ props.row.fullname }}
|
|
|
|
|
</q-td>
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-td key="organizationName" :props="props" @click="nextPage(props.row)">
|
|
|
|
|
<div v-if="props.row.orgName !== null ||
|
|
|
|
|
props.row.positionPath !== null
|
|
|
|
|
">
|
2023-08-15 17:58:41 +07:00
|
|
|
<div class="col-4">
|
|
|
|
|
<div class="text-weight-medium">
|
|
|
|
|
{{ props.row.orgName !== null ? props.row.orgName : "-" }}
|
|
|
|
|
{{
|
|
|
|
|
props.row.organizationShortName !== null
|
2023-08-30 19:23:57 +07:00
|
|
|
? `(${props.row.organizationShortName})`
|
|
|
|
|
: ""
|
2023-08-15 17:58:41 +07:00
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="text-weight-light">
|
|
|
|
|
{{
|
|
|
|
|
props.row.positionPath !== null
|
2023-08-30 19:23:57 +07:00
|
|
|
? props.row.positionPath
|
|
|
|
|
: "-"
|
2023-08-15 17:58:41 +07:00
|
|
|
}}
|
|
|
|
|
{{
|
|
|
|
|
props.row.positionNumber !== null
|
2023-08-30 19:23:57 +07:00
|
|
|
? `(${props.row.positionNumber})`
|
|
|
|
|
: ""
|
2023-08-15 17:58:41 +07:00
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else>
|
|
|
|
|
<div class="col-4">
|
|
|
|
|
<div class="text-weight-medium">-</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td key="birthday" :props="props" @click="nextPage(props.row)">
|
|
|
|
|
{{ props.row.birthday }}
|
|
|
|
|
</q-td>
|
|
|
|
|
</q-tr>
|
|
|
|
|
</template>
|
|
|
|
|
</d-table>
|
|
|
|
|
</q-card-section>
|
|
|
|
|
|
|
|
|
|
<q-card-actions align="right" class="bg-white text-teal">
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-btn label="ส่งไปออกคำสั่ง" @click="clickAddlist" color="public" :disable="checkSelected" />
|
2023-08-15 17:58:41 +07:00
|
|
|
</q-card-actions>
|
|
|
|
|
</q-card>
|
|
|
|
|
</q-dialog>
|
|
|
|
|
|
2023-08-30 19:23:57 +07:00
|
|
|
<DialogOrgTree v-model:modal="modalTree" :close="closeModalTree" :personal="personal" :personalId="personalId" />
|
2023-08-15 17:58:41 +07:00
|
|
|
<!-- :personalId="personalId" -->
|
|
|
|
|
</template>
|
|
|
|
|
<style scoped lang="scss"></style>
|