Merge branch 'develop' into devTee
This commit is contained in:
commit
2ff77e53e5
14 changed files with 1462 additions and 175 deletions
|
|
@ -143,8 +143,7 @@ function onSubmit() {
|
|||
["org" + type + "PhoneIn"]: formData.orgPhoneIn,
|
||||
["org" + type + "Fax"]: formData.orgFax,
|
||||
["org" + type + "Rank"]: formData.orgLevel,
|
||||
["org" + type + "RankSub"]:
|
||||
level.value !== 0 ? formData.orgLevelSub : undefined,
|
||||
["org" + type + "RankSub"]: formData.orgLevelSub,
|
||||
[nameId]: rootId,
|
||||
responsibility:
|
||||
formData.responsibility != null ? formData.responsibility : "",
|
||||
|
|
@ -217,8 +216,8 @@ watch(
|
|||
() => {
|
||||
if (props.modal === true) {
|
||||
if (actionType.value === "ADD") {
|
||||
console.log(props.dataNode);
|
||||
console.log(level.value);
|
||||
// console.log(props.dataNode);
|
||||
// console.log(level.value);
|
||||
|
||||
if (props.dataNode) {
|
||||
formData.orgCode =
|
||||
|
|
@ -238,6 +237,8 @@ watch(
|
|||
orgLevelOption.value = orgLevelOptionMain.value.slice(1, 4);
|
||||
formData.orgLevel = "";
|
||||
}
|
||||
|
||||
formData.orgLevel == "DEPARTMENT" ? selectOrgLevele("DEPARTMENT") : "";
|
||||
} else {
|
||||
if (props.dataNode) {
|
||||
formData.orgName = props.dataNode.orgTreeName;
|
||||
|
|
@ -274,9 +275,16 @@ const tittleName = computed(() => {
|
|||
function selectOrgLevele(val: string, status: boolean = true) {
|
||||
formData.orgLevelSub = status ? "" : formData.orgLevelSub;
|
||||
switch (val) {
|
||||
case "DEPARTMENT":
|
||||
orgLevelSubOptionMain.value = [
|
||||
{ name: "สำนัก", id: "BUREAU" },
|
||||
{ name: "สำนักงาน", id: "OFFICE" },
|
||||
{ name: "สำนักงานเขต", id: "DISTRICT" },
|
||||
];
|
||||
break;
|
||||
case "OFFICE":
|
||||
orgLevelSubOptionMain.value = [
|
||||
{ name: "ระดับกอง", id: "DIVISION" },
|
||||
{ name: "กอง", id: "DIVISION" },
|
||||
{
|
||||
name: "สำนักงาน",
|
||||
id: "OFFICE",
|
||||
|
|
@ -289,7 +297,7 @@ function selectOrgLevele(val: string, status: boolean = true) {
|
|||
break;
|
||||
case "DIVISION":
|
||||
orgLevelSubOptionMain.value = [
|
||||
{ name: "ระดับส่วน", id: "SECTION" },
|
||||
{ name: "ส่วน", id: "SECTION" },
|
||||
{
|
||||
name: "กลุ่มภารกิจ",
|
||||
id: "MISSION",
|
||||
|
|
@ -298,11 +306,19 @@ function selectOrgLevele(val: string, status: boolean = true) {
|
|||
|
||||
case "SECTION":
|
||||
orgLevelSubOptionMain.value = [
|
||||
{ name: "ระดับฝ่าย", id: "FACTION" },
|
||||
{ name: "ฝ่าย", id: "FACTION" },
|
||||
{
|
||||
name: "กลุ่มงาน",
|
||||
id: "WORK",
|
||||
},
|
||||
{
|
||||
name: "สถานีดับเพลิงและกู้ภัย",
|
||||
id: "FIRESTATION",
|
||||
},
|
||||
{
|
||||
name: "โรงเรียน",
|
||||
id: "SCHOOL",
|
||||
},
|
||||
];
|
||||
|
||||
default:
|
||||
|
|
@ -415,9 +431,8 @@ function selectOrgLevele(val: string, status: boolean = true) {
|
|||
lazy-rules
|
||||
/>
|
||||
</div>
|
||||
<div class="col-4" v-if="formData.orgLevel !== '' && level !== 0">
|
||||
<div class="col-4" v-if="formData.orgLevel !== ''">
|
||||
<q-select
|
||||
:readonly="level === 0 || formData.orgLevel === 'DEPARTMENT'"
|
||||
ref="orgLevelSubRef"
|
||||
dense
|
||||
hide-bottom-space
|
||||
|
|
|
|||
|
|
@ -94,6 +94,10 @@ export const useSalaryDataStore = defineStore("salary", () => {
|
|||
id: 21,
|
||||
name: "โปรดเกล้าฯ แต่งตั้งให้ดำรงตำแหน่ง{รายละเอียดของตำแหน่งและหน่วยงาน}",
|
||||
},
|
||||
{
|
||||
id: 22,
|
||||
name: "รักษาการในตำแหน่งหัวหน้าฝ่าย {ฝ่าย…} {หน่วยงาน/สำนัก} {ลำดับที่…} คำสั่ง {หน่วยงาน/สำนัก} ที่ {เลขที่/ปีงบประมาณ} ลว. {วันที่ลงนาม}",
|
||||
},
|
||||
]);
|
||||
|
||||
const optionDoc = ref<any>([
|
||||
|
|
|
|||
|
|
@ -327,22 +327,22 @@ async function filterKeyword2Fn(page: number) {
|
|||
* @param id string
|
||||
* @param data type
|
||||
*/
|
||||
async function fecthlistProbation(id: string, data: any) {
|
||||
try {
|
||||
probationlist.value = [];
|
||||
const res = await http.post(
|
||||
config.API.profileSearchNewOcIdType(id, "officer"),
|
||||
{
|
||||
criterias: data,
|
||||
}
|
||||
);
|
||||
return res.data.result;
|
||||
} catch (err) {
|
||||
messageError($q, err);
|
||||
} finally {
|
||||
hideLoader();
|
||||
}
|
||||
}
|
||||
// async function fecthlistProbation(id: string, data: any) {
|
||||
// try {
|
||||
// probationlist.value = [];
|
||||
// const res = await http.post(
|
||||
// config.API.profileSearchNewOcIdType(id, "officer"),
|
||||
// {
|
||||
// criterias: data,
|
||||
// }
|
||||
// );
|
||||
// return res.data.result;
|
||||
// } catch (err) {
|
||||
// messageError($q, err);
|
||||
// } finally {
|
||||
// hideLoader();
|
||||
// }
|
||||
// }
|
||||
|
||||
/**
|
||||
* ค้นหาข้อมูลตามไอดี
|
||||
|
|
@ -389,9 +389,16 @@ function clickAdd(data: any) {
|
|||
|
||||
await http
|
||||
.post(config.API.personalAdd(), data)
|
||||
.then(() => {
|
||||
getpersonalList();
|
||||
success($q, "เพิ่มข้อมูลสำเร็จ");
|
||||
.then(async () => {
|
||||
await http
|
||||
.get(config.API.orgProfileStatus(data.id))
|
||||
.then((res) => {
|
||||
getpersonalList();
|
||||
success($q, "เพิ่มข้อมูลสำเร็จ");
|
||||
})
|
||||
.catch((e) => {
|
||||
messageError($q, e);
|
||||
});
|
||||
})
|
||||
.catch((e) => {
|
||||
messageError($q, e);
|
||||
|
|
|
|||
|
|
@ -21,6 +21,52 @@ const organization = ref<string>("");
|
|||
const roundOp = ref<DataOption[]>([]);
|
||||
const organizationOpsMain = ref<DataOption[]>([]);
|
||||
const organizationOps = ref<DataOption[]>([]);
|
||||
const typeReport = ref<string>("");
|
||||
const listReportMain = ref<DataOption[]>([
|
||||
{
|
||||
id: "1",
|
||||
name: "รายงานสรุปผลการประเมินผลการปฏิบัติราชการระดับบุคคล แสดงจำนวนผู้มีผลการประเมินระดับต่างๆ ในแต่ละรอบการประเมินรายหน่วยงาน/ส่วนราชการ",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "รายงานสรุปผลการประเมินผลการปฏิบัติราชการระดับบุคคล แสดงรายละเอียดผู้มีผลการประเมินระดับต่างๆ รายหน่วยงาน/ส่วนราชการ ",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "รายงานสรุปผลการประเมินผลการปฏิบัติราชการระดับบุคคล แสดงรายละเอียดผลการประเมินของผู้ใต้บังคับบัญชา",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "แบบสรุปผลการประเมินผลการปฏิบัติราชการระดับบุคคล (รายบุคคล)",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "รายงานผลการประเมินผลการปฏิบัติราชการย้อนหลัง ๕ ปี",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "รายงานผลการประเมินผลการปฏิบัติราชการย้อนหลัง ๓ ปี",
|
||||
},
|
||||
{
|
||||
id: "7",
|
||||
name: "รายงานสรุปแผนพัฒนาการปฏิบัติราชการรายบุคคล",
|
||||
},
|
||||
{
|
||||
id: "8",
|
||||
name: "รายงานแผนพัฒนาการปฏิบัติราชการรายบุคคล",
|
||||
},
|
||||
{
|
||||
id: "9",
|
||||
name: "จัดทำประกาศผู้มีผลการปฏิบัติราชการระดับดีเด่นและดีมาก",
|
||||
},
|
||||
]);
|
||||
const listReport = ref<DataOption[]>([]);
|
||||
const searchField = ref<string>("fullName");
|
||||
const search = ref<string>("");
|
||||
const typeFilter = ref<DataOption[]>([
|
||||
{ id: "fullName", name: "ชื่อ-นามสกุล" },
|
||||
{ id: "citizenId", name: "เลขประจำตัวประชาชน" },
|
||||
]);
|
||||
|
||||
function fetchRoundOption() {
|
||||
http
|
||||
|
|
@ -112,9 +158,9 @@ function fetchReport() {
|
|||
* function เรียกไฟล์ PDF
|
||||
* @param data ข้อมูลบัญชีวันลา
|
||||
*/
|
||||
async function genPDf(data: any) {
|
||||
function genPDf(data: any) {
|
||||
showLoader();
|
||||
await axios
|
||||
axios
|
||||
.post(config.API.reportTemplate + `/docx`, data, {
|
||||
headers: {
|
||||
accept: "application/pdf",
|
||||
|
|
@ -144,12 +190,26 @@ function changOption() {
|
|||
fetchReport();
|
||||
}
|
||||
|
||||
function filterSelector(val: string, update: Function) {
|
||||
update(() => {
|
||||
organizationOps.value = organizationOpsMain.value.filter(
|
||||
(v: DataOption) => v.name.toLowerCase().indexOf(val) > -1
|
||||
);
|
||||
});
|
||||
function filterSelector(val: string, update: Function, type: string) {
|
||||
switch (type) {
|
||||
case "typereport":
|
||||
update(() => {
|
||||
listReport.value = listReportMain.value.filter(
|
||||
(v: DataOption) => v.name.toLowerCase().indexOf(val) > -1
|
||||
);
|
||||
});
|
||||
break;
|
||||
case "organization":
|
||||
update(() => {
|
||||
organizationOps.value = organizationOpsMain.value.filter(
|
||||
(v: DataOption) => v.name.toLowerCase().indexOf(val) > -1
|
||||
);
|
||||
});
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
const splitterModel = ref(14);
|
||||
|
|
@ -159,7 +219,9 @@ const pdfSrc = ref<any>();
|
|||
const dataDownload = ref<any>();
|
||||
|
||||
async function downloadReport(data: any, type: string) {
|
||||
var fileName = "ประกาศผู้มีผลการปฏิบัติราชการระดับดีเด่นและดีมาก";
|
||||
const name =
|
||||
listReportMain.value.find((e) => e.id === typeReport.value)?.name ?? "";
|
||||
var fileName = name;
|
||||
genReport(data, fileName, type);
|
||||
}
|
||||
|
||||
|
|
@ -184,60 +246,11 @@ onMounted(() => {
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<div class="toptitle text-dark col-12 row items-center">
|
||||
จัดทำประกาศผู้มีผลการปฏิบัติราชการระดับดีเด่นและดีมาก
|
||||
</div>
|
||||
<div class="toptitle text-dark col-12 row items-center">รายงาน</div>
|
||||
<q-card flat bordered>
|
||||
<q-card-section>
|
||||
<q-card-section class="q-gutter-y-sm">
|
||||
<q-toolbar style="padding: 0">
|
||||
<div class="row q-gutter-sm">
|
||||
<datepicker
|
||||
menu-class-name="modalfix"
|
||||
v-model="year"
|
||||
style="width: 150px"
|
||||
:locale="'th'"
|
||||
autoApply
|
||||
year-picker
|
||||
:enableTimePicker="false"
|
||||
@update:model-value="fetchRoundOption()"
|
||||
>
|
||||
<template #year="{ year }">{{ year + 543 }}</template>
|
||||
<template #year-overlay-value="{ value }">{{
|
||||
parseInt(value + 543)
|
||||
}}</template>
|
||||
<template #trigger>
|
||||
<q-input
|
||||
dense
|
||||
outlined
|
||||
hide-bottom-space
|
||||
:model-value="!!year ? year + 543 : null"
|
||||
:label="`${'ปีงบประมาณ'}`"
|
||||
>
|
||||
<template v-slot:prepend>
|
||||
<q-icon
|
||||
name="event"
|
||||
class="cursor-pointer"
|
||||
style="color: var(--q-primary)"
|
||||
>
|
||||
</q-icon>
|
||||
</template>
|
||||
</q-input>
|
||||
</template>
|
||||
</datepicker>
|
||||
<q-select
|
||||
v-model="round"
|
||||
outlined
|
||||
label="รอบการประเมิน"
|
||||
dense
|
||||
option-label="name"
|
||||
option-value="id"
|
||||
:options="roundOp"
|
||||
style="min-width: 150px"
|
||||
emit-value
|
||||
map-options
|
||||
:disable="roundOp.length === 0"
|
||||
@update:model-value="changOption"
|
||||
/>
|
||||
<q-select
|
||||
:disable="roundOp.length === 0"
|
||||
style="min-width: 100px"
|
||||
|
|
@ -248,14 +261,12 @@ onMounted(() => {
|
|||
option-value="id"
|
||||
emit-value
|
||||
map-options
|
||||
v-model="organization"
|
||||
:options="organizationOps"
|
||||
label="หน่วยงาน"
|
||||
v-model="typeReport"
|
||||
:options="listReport"
|
||||
label="รายงาน"
|
||||
use-input
|
||||
@update:model-value="changOption"
|
||||
@filter="(inputValue: string,
|
||||
|
||||
doneFn: Function) => filterSelector(inputValue, doneFn )"
|
||||
doneFn: Function) => filterSelector(inputValue, doneFn ,'typereport')"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
|
@ -295,11 +306,136 @@ onMounted(() => {
|
|||
</q-btn>
|
||||
</q-toolbar>
|
||||
|
||||
<q-toolbar
|
||||
class="q-pa-sm bg-grey-2"
|
||||
style="padding: 0; border-radius: 5px"
|
||||
v-if="typeReport"
|
||||
>
|
||||
<div
|
||||
class="row q-gutter-sm"
|
||||
v-if="
|
||||
typeReport === '1' ||
|
||||
typeReport === '2' ||
|
||||
typeReport === '3' ||
|
||||
typeReport === '7' ||
|
||||
typeReport === '9'
|
||||
"
|
||||
>
|
||||
<datepicker
|
||||
menu-class-name="modalfix"
|
||||
v-model="year"
|
||||
style="width: 150px"
|
||||
:locale="'th'"
|
||||
autoApply
|
||||
year-picker
|
||||
:enableTimePicker="false"
|
||||
@update:model-value="fetchRoundOption()"
|
||||
>
|
||||
<template #year="{ year }">{{ year + 543 }}</template>
|
||||
<template #year-overlay-value="{ value }">{{
|
||||
parseInt(value + 543)
|
||||
}}</template>
|
||||
<template #trigger>
|
||||
<q-input
|
||||
dense
|
||||
outlined
|
||||
hide-bottom-space
|
||||
:model-value="!!year ? year + 543 : null"
|
||||
:label="`${'ปีงบประมาณ'}`"
|
||||
class="bg-white"
|
||||
>
|
||||
<template v-slot:prepend>
|
||||
<q-icon
|
||||
name="event"
|
||||
class="cursor-pointer"
|
||||
style="color: var(--q-primary)"
|
||||
>
|
||||
</q-icon>
|
||||
</template>
|
||||
</q-input>
|
||||
</template>
|
||||
</datepicker>
|
||||
<q-select
|
||||
class="bg-white"
|
||||
v-model="round"
|
||||
outlined
|
||||
label="รอบการประเมิน"
|
||||
dense
|
||||
option-label="name"
|
||||
option-value="id"
|
||||
:options="roundOp"
|
||||
style="min-width: 150px"
|
||||
emit-value
|
||||
map-options
|
||||
:disable="roundOp.length === 0"
|
||||
@update:model-value="changOption"
|
||||
/>
|
||||
<q-select
|
||||
class="bg-white"
|
||||
:disable="roundOp.length === 0"
|
||||
style="min-width: 100px"
|
||||
dense
|
||||
hide-bottom-space
|
||||
outlined
|
||||
option-label="name"
|
||||
option-value="id"
|
||||
emit-value
|
||||
map-options
|
||||
v-model="organization"
|
||||
:options="organizationOps"
|
||||
label="หน่วยงาน"
|
||||
use-input
|
||||
@update:model-value="changOption"
|
||||
@filter="(inputValue: string,
|
||||
|
||||
doneFn: Function) => filterSelector(inputValue, doneFn,'organization' )"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="row q-gutter-sm" v-else>
|
||||
<q-select
|
||||
class="bg-white"
|
||||
style="width: 200px"
|
||||
dense
|
||||
hide-bottom-space
|
||||
outlined
|
||||
option-label="name"
|
||||
option-value="id"
|
||||
emit-value
|
||||
map-options
|
||||
v-model="searchField"
|
||||
:options="typeFilter"
|
||||
label="ค้นหาจาก"
|
||||
/>
|
||||
|
||||
<q-input
|
||||
class="bg-white"
|
||||
v-model="search"
|
||||
outlined
|
||||
clearable
|
||||
hide-bottom-space
|
||||
dense
|
||||
label="คำค้น"
|
||||
style="width: 350px"
|
||||
>
|
||||
<template v-slot:after>
|
||||
<q-btn
|
||||
color="primary"
|
||||
icon="search"
|
||||
label="ค้นหา"
|
||||
class="full-width q-py-sm q-px-md"
|
||||
>
|
||||
</q-btn>
|
||||
</template>
|
||||
</q-input>
|
||||
</div>
|
||||
</q-toolbar>
|
||||
|
||||
<q-splitter
|
||||
v-model="splitterModel"
|
||||
horizontal
|
||||
style="
|
||||
height: 75vh;
|
||||
height: 70vh;
|
||||
border: 1px solid rgb(210, 210, 210);
|
||||
border-radius: 5px;
|
||||
"
|
||||
|
|
|
|||
10
src/modules/17_acting/interface/index/Main.ts
Normal file
10
src/modules/17_acting/interface/index/Main.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
interface Pagination {
|
||||
rowsPerPage: number;
|
||||
}
|
||||
|
||||
interface DataOption {
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type { Pagination, DataOption };
|
||||
1
src/modules/17_acting/interface/request/Main.ts
Normal file
1
src/modules/17_acting/interface/request/Main.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export type {};
|
||||
35
src/modules/17_acting/interface/response/Main.ts
Normal file
35
src/modules/17_acting/interface/response/Main.ts
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
interface DataTree {
|
||||
labelName: string;
|
||||
orgCode: string;
|
||||
orgLevel: 0;
|
||||
orgName: string;
|
||||
orgRootName: string;
|
||||
orgTreeCode: string;
|
||||
orgTreeId: string;
|
||||
orgTreeName: string;
|
||||
orgTreeShortName: string;
|
||||
children: DataTree[];
|
||||
posMaster: PosMaster[];
|
||||
}
|
||||
|
||||
interface PosMaster {
|
||||
fullNameCurrentHolder: string;
|
||||
orgLevel: number;
|
||||
orgTreeId: string;
|
||||
posmasterId: string;
|
||||
}
|
||||
|
||||
interface ListPerson {
|
||||
citizenId: string;
|
||||
firstName: string;
|
||||
id: string;
|
||||
lastName: string;
|
||||
posLevel: string;
|
||||
posNo: string;
|
||||
posType: string;
|
||||
position: string;
|
||||
prefix: string;
|
||||
posMasterOrder?: string;
|
||||
}
|
||||
|
||||
export type { DataTree, PosMaster, ListPerson };
|
||||
14
src/modules/17_acting/router.ts
Normal file
14
src/modules/17_acting/router.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
const mainPage = () => import("@/modules/17_acting/views/main.vue");
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/acting",
|
||||
name: "acting",
|
||||
component: mainPage,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [1],
|
||||
Role: "organization",
|
||||
},
|
||||
},
|
||||
];
|
||||
573
src/modules/17_acting/views/main.vue
Normal file
573
src/modules/17_acting/views/main.vue
Normal file
|
|
@ -0,0 +1,573 @@
|
|||
<script setup lang="ts">
|
||||
import { ref, onMounted, reactive } from "vue";
|
||||
import { useQuasar } from "quasar";
|
||||
import http from "@/plugins/http";
|
||||
import config from "@/app.config";
|
||||
|
||||
/** importType*/
|
||||
import type { QTableProps } from "quasar";
|
||||
import type {
|
||||
DataTree,
|
||||
PosMaster,
|
||||
ListPerson,
|
||||
} from "@/modules/17_acting/interface/response/Main";
|
||||
|
||||
/** importStore*/
|
||||
import { useCounterMixin } from "@/stores/mixin";
|
||||
|
||||
/** use*/
|
||||
const $q = useQuasar();
|
||||
const { showLoader, hideLoader, messageError, dialogRemove } =
|
||||
useCounterMixin();
|
||||
|
||||
/** โครงสร้าง*/
|
||||
const expanded = ref<Array<string>>([]);
|
||||
const filter = ref<string>("");
|
||||
const nodeTree = ref<DataTree[]>([]);
|
||||
const posmasterId = ref<string>("");
|
||||
|
||||
/** function เรียกข้อมูลโครงสร้าง แบบปัจุบัน*/
|
||||
function fetchOrganizationActive() {
|
||||
showLoader();
|
||||
http
|
||||
.get(config.API.activeOrganization)
|
||||
.then((res) => {
|
||||
const data = res.data.result;
|
||||
if (data) {
|
||||
fetchOrganization(data.activeId);
|
||||
}
|
||||
})
|
||||
.catch((err) => {
|
||||
messageError($q, err);
|
||||
hideLoader();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* function fetch ข้อมูลโครงสร้าาง
|
||||
* @param id id โครงสร้างปัจุบัน
|
||||
*/
|
||||
function fetchOrganization(id: string) {
|
||||
showLoader();
|
||||
http
|
||||
.get(config.API.orgAct + `/${id}`)
|
||||
.then((res) => {
|
||||
const data = res.data.result;
|
||||
nodeTree.value = data;
|
||||
})
|
||||
.catch((err) => {
|
||||
messageError($q, err);
|
||||
})
|
||||
.finally(() => {
|
||||
hideLoader();
|
||||
});
|
||||
}
|
||||
|
||||
async function updateSelected(data: PosMaster) {
|
||||
posmasterId.value = data.posmasterId;
|
||||
await Promise.all([fetchPosMaster(), fetchListAct()]);
|
||||
}
|
||||
|
||||
/** ตำแหน่ง*/
|
||||
const rowPosition = ref<ListPerson[]>([]);
|
||||
const columns = ref<QTableProps["columns"]>([
|
||||
{
|
||||
name: "no",
|
||||
align: "left",
|
||||
label: "ลำดับ",
|
||||
sortable: false,
|
||||
field: "no",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "citizenId",
|
||||
align: "left",
|
||||
label: "เลขประจำตัวประชาชน",
|
||||
sortable: false,
|
||||
field: "citizenId",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "name",
|
||||
align: "left",
|
||||
label: "ชื่อ-นามสกุล",
|
||||
field(row) {
|
||||
return `${row.prefix}${row.firstName} ${row.lastName}`;
|
||||
},
|
||||
sortable: false,
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "posNo",
|
||||
align: "left",
|
||||
label: "ตำแหน่งเลขที่",
|
||||
sortable: false,
|
||||
field: "posNo",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "position",
|
||||
align: "left",
|
||||
label: "ตำแหน่งในสายงาน",
|
||||
sortable: false,
|
||||
field: "position",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "posType",
|
||||
align: "left",
|
||||
label: "ตำแหน่งประเภท",
|
||||
sortable: false,
|
||||
field: "posType",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "posLevel",
|
||||
align: "left",
|
||||
label: "ระดับ",
|
||||
sortable: false,
|
||||
field: "posLevel",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
]);
|
||||
const keyword = ref<string>("");
|
||||
|
||||
/** function fetch รายชื่อ*/
|
||||
function fetchPosMaster() {
|
||||
showLoader();
|
||||
http
|
||||
.post(config.API.orgPosAct + `/search`, { posmasterId: posmasterId.value })
|
||||
.then((res) => {
|
||||
const data = res.data.result;
|
||||
rowPosition.value = data;
|
||||
})
|
||||
.catch((err) => {
|
||||
messageError($q, err);
|
||||
})
|
||||
.finally(() => {
|
||||
hideLoader();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* function เลือกราชชื่อรักษาการ
|
||||
* @param data ข้อมูลรายชื่อ
|
||||
*/
|
||||
function selectPosition(data: ListPerson) {
|
||||
showLoader();
|
||||
http
|
||||
.post(config.API.orgPosAct, {
|
||||
posMasterId: posmasterId.value,
|
||||
posMasterChildId: data.id,
|
||||
})
|
||||
.then(async () => {
|
||||
await Promise.all([fetchPosMaster(), fetchListAct()]);
|
||||
})
|
||||
.catch((err) => {
|
||||
messageError($q, err);
|
||||
hideLoader();
|
||||
});
|
||||
}
|
||||
|
||||
/** รายชื่อคนรักษาการ*/
|
||||
const rowListPerson = ref<ListPerson[]>([]);
|
||||
const keywordAct = ref<string>("");
|
||||
|
||||
/** function fetch รายชื่อรักษาการ */
|
||||
function fetchListAct() {
|
||||
showLoader();
|
||||
http
|
||||
.get(config.API.orgPosAct + `/${posmasterId.value}`)
|
||||
.then((res) => {
|
||||
const data = res.data.result;
|
||||
rowListPerson.value = data;
|
||||
})
|
||||
.catch((err) => {
|
||||
messageError($q, err);
|
||||
})
|
||||
.finally(() => {
|
||||
hideLoader();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* funcion เลือกลำดับรายชื่อรักษาการ
|
||||
* @param type up,down
|
||||
* @param id รายชื่อรักษาการ
|
||||
*/
|
||||
function onSwapPerson(type: string, id: string) {
|
||||
showLoader();
|
||||
http
|
||||
.get(config.API.orgPosAct + `/swap/${type}/${id}`)
|
||||
.then(() => {
|
||||
fetchListAct();
|
||||
})
|
||||
.catch((err) => {
|
||||
messageError($q, err);
|
||||
hideLoader();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* function ลบรายชื่อรักษาการ
|
||||
* @param id ชื่อรักษาการ
|
||||
*/
|
||||
function onDelete(id: string) {
|
||||
dialogRemove($q, () => {
|
||||
showLoader();
|
||||
http
|
||||
.delete(config.API.orgPosAct + `/${id}`)
|
||||
.then(async () => {
|
||||
await Promise.all([fetchPosMaster(), fetchListAct()]);
|
||||
})
|
||||
.catch((err) => {
|
||||
messageError($q, err);
|
||||
hideLoader();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
fetchOrganizationActive();
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="toptitle text-dark col-12 row items-center">
|
||||
รักษาการในตำแหน่ง
|
||||
</div>
|
||||
<q-card style="height: 100%">
|
||||
<q-card-section :horizontal="$q.screen.gt.sm">
|
||||
<q-card-section class="col-lg-3 col-md-4 col-xs-12 q-gutter-sm">
|
||||
<div>
|
||||
<q-input dense outlined v-model="filter" label="ค้นหา">
|
||||
<template v-slot:append>
|
||||
<q-icon
|
||||
v-if="filter !== ''"
|
||||
name="clear"
|
||||
class="cursor-pointer"
|
||||
@click="filter = ''"
|
||||
/>
|
||||
<q-icon name="search" color="grey-5" />
|
||||
</template>
|
||||
</q-input>
|
||||
</div>
|
||||
<div class="bg-white tree-container q-pa-xs">
|
||||
<q-tree
|
||||
class="q-pa-sm q-gutter-sm"
|
||||
dense
|
||||
:nodes="nodeTree"
|
||||
node-key="orgTreeId"
|
||||
label-key="labelName"
|
||||
:filter="filter"
|
||||
no-results-label="ไม่พบข้อมูลที่ค้นหา"
|
||||
no-nodes-label="ไม่มีข้อมูล"
|
||||
v-model:expanded="expanded"
|
||||
>
|
||||
<template v-slot:default-header="prop">
|
||||
<q-item
|
||||
clickable
|
||||
class="row col-12 items-center text-dark q-py-xs q-pl-sm rounded-borders my-list"
|
||||
>
|
||||
<div>
|
||||
<div class="text-weight-medium">
|
||||
{{ prop.node.orgTreeName }}
|
||||
</div>
|
||||
<div class="text-weight-light text-grey-8">
|
||||
{{ prop.node.orgCode == null ? null : prop.node.orgCode }}
|
||||
{{
|
||||
prop.node.orgTreeShortName == null
|
||||
? null
|
||||
: prop.node.orgTreeShortName
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
</q-item>
|
||||
</template>
|
||||
|
||||
<template v-slot:default-body="prop">
|
||||
<div v-if="prop.node.posMaster">
|
||||
<q-list dense v-for="col in prop.node.posMaster">
|
||||
<q-item
|
||||
clickable
|
||||
:active="posmasterId == col.posmasterId"
|
||||
active-class="my-list-link text-primary text-weight-medium"
|
||||
@click.stop="updateSelected(col)"
|
||||
>
|
||||
<q-item-section>
|
||||
{{ col.fullNameCurrentHolder }}
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
</q-list>
|
||||
<div></div>
|
||||
</div>
|
||||
</template>
|
||||
</q-tree>
|
||||
</div>
|
||||
</q-card-section>
|
||||
|
||||
<q-separator :vertical="$q.screen.gt.xs" />
|
||||
|
||||
<q-card-section
|
||||
v-if="posmasterId"
|
||||
class="col-lg-9 col-md-8 col-xs-12 scroll"
|
||||
style="height: 80vh"
|
||||
>
|
||||
<div class="column q-col-gutter-sm">
|
||||
<div class="col">
|
||||
<q-card bordered style="height: 100%; border: 1px solid #d6dee1">
|
||||
<div class="col-12 text-weight-medium bg-grey-1 q-py-sm q-px-md">
|
||||
รายชื่อ
|
||||
</div>
|
||||
<div class="col-12"><q-separator /></div>
|
||||
<div class="row q-pa-md">
|
||||
<div class="col-12">
|
||||
<q-toolbar style="padding: 0">
|
||||
<q-space />
|
||||
<div class="row q-gutter-md">
|
||||
<div>
|
||||
<!-- <q-checkbox
|
||||
keep-color
|
||||
v-model="reqMaster.isAll"
|
||||
label="แสดงตำแหน่งทั้งหมด"
|
||||
color="primary"
|
||||
>
|
||||
<q-tooltip
|
||||
>แสดงตำแหน่งทั้งหมดภายใต้หน่วยงาน/ส่วนราชการที่เลือก</q-tooltip
|
||||
>
|
||||
</q-checkbox> -->
|
||||
</div>
|
||||
<div>
|
||||
<q-input outlined dense v-model="keyword" label="ค้นหา">
|
||||
<template v-slot:append>
|
||||
<q-icon name="search" color="grey-5" />
|
||||
</template>
|
||||
</q-input>
|
||||
</div>
|
||||
</div>
|
||||
</q-toolbar>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<d-table
|
||||
ref="table"
|
||||
:columns="columns"
|
||||
:rows="rowPosition"
|
||||
:paging="true"
|
||||
:filter="keyword"
|
||||
row-key="id"
|
||||
flat
|
||||
bordered
|
||||
dense
|
||||
:rows-per-page-options="[10, 25, 50, 100]"
|
||||
>
|
||||
<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
|
||||
v-for="col in props.cols"
|
||||
:key="col.name"
|
||||
:props="props"
|
||||
@click="selectPosition(props.row)"
|
||||
>
|
||||
<div v-if="col.name === 'no'">
|
||||
{{ props.rowIndex + 1 }}
|
||||
</div>
|
||||
<div v-else>
|
||||
{{ col.value ? col.value : "-" }}
|
||||
</div>
|
||||
</q-td>
|
||||
</q-tr>
|
||||
</template>
|
||||
<!-- <template v-slot:pagination="scope">
|
||||
<q-pagination
|
||||
v-model="reqMaster.page"
|
||||
active-color="primary"
|
||||
color="dark"
|
||||
:max="totalPage"
|
||||
:max-pages="5"
|
||||
size="sm"
|
||||
boundary-links
|
||||
direction-links
|
||||
></q-pagination>
|
||||
</template> -->
|
||||
</d-table>
|
||||
</div>
|
||||
</div>
|
||||
</q-card>
|
||||
</div>
|
||||
<div class="col">
|
||||
<q-card bordered style="height: 100%; border: 1px solid #d6dee1">
|
||||
<div class="col-12 text-weight-medium bg-grey-1 q-py-sm q-px-md">
|
||||
รายชื่อรักษาการ
|
||||
</div>
|
||||
<div class="col-12"><q-separator /></div>
|
||||
<div class="row q-pa-md">
|
||||
<div class="col-12">
|
||||
<q-toolbar style="padding: 0">
|
||||
<q-space />
|
||||
<div class="row q-gutter-md">
|
||||
<div>
|
||||
<q-input
|
||||
outlined
|
||||
dense
|
||||
v-model="keywordAct"
|
||||
label="ค้นหา"
|
||||
>
|
||||
<template v-slot:append>
|
||||
<q-icon name="search" color="grey-5" />
|
||||
</template>
|
||||
</q-input>
|
||||
</div>
|
||||
</div>
|
||||
</q-toolbar>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<d-table
|
||||
ref="table"
|
||||
:columns="columns"
|
||||
:rows="rowListPerson"
|
||||
:paging="true"
|
||||
:filter="keywordAct"
|
||||
row-key="id"
|
||||
flat
|
||||
bordered
|
||||
dense
|
||||
:rows-per-page-options="[10, 25, 50, 100]"
|
||||
>
|
||||
<template v-slot:header="props">
|
||||
<q-tr :props="props">
|
||||
<q-th auto-width v-if="rowListPerson.length !== 1" />
|
||||
<q-th auto-width v-if="rowListPerson.length !== 1" />
|
||||
<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 auto-width v-if="rowListPerson.length !== 1">
|
||||
<q-btn
|
||||
dense
|
||||
size="12px"
|
||||
flat
|
||||
round
|
||||
:color="props.rowIndex + 1 == 1 ? 'grey' : 'green'"
|
||||
:disable="props.rowIndex + 1 == 1"
|
||||
icon="mdi-arrow-up-bold"
|
||||
@click="onSwapPerson('up', props.row.id)"
|
||||
>
|
||||
<!-- <q-tooltip>เลื่อนลำดับขึ้น</q-tooltip> -->
|
||||
</q-btn>
|
||||
</q-td>
|
||||
<q-td auto-width v-if="rowListPerson.length !== 1">
|
||||
<q-btn
|
||||
dense
|
||||
size="12px"
|
||||
flat
|
||||
round
|
||||
:color="
|
||||
rowListPerson.length == props.rowIndex + 1
|
||||
? 'grey'
|
||||
: 'red'
|
||||
"
|
||||
:disable="
|
||||
rowListPerson.length == props.rowIndex + 1
|
||||
"
|
||||
icon="mdi-arrow-down-bold"
|
||||
@click="onSwapPerson('down', props.row.id)"
|
||||
>
|
||||
<!-- <q-tooltip>เลื่อนลำดับลง</q-tooltip> -->
|
||||
</q-btn>
|
||||
</q-td>
|
||||
<q-td
|
||||
v-for="col in props.cols"
|
||||
:key="col.name"
|
||||
:props="props"
|
||||
>
|
||||
<div v-if="col.name === 'no'">
|
||||
{{ props.rowIndex + 1 }}
|
||||
</div>
|
||||
<div v-else>
|
||||
{{ col.value ? col.value : "-" }}
|
||||
</div>
|
||||
</q-td>
|
||||
<q-td>
|
||||
<q-btn
|
||||
dense
|
||||
size="12px"
|
||||
flat
|
||||
round
|
||||
color="red"
|
||||
icon="delete"
|
||||
@click="onDelete(props.row.id)"
|
||||
>
|
||||
<!-- <q-tooltip>เลื่อนลำดับลง</q-tooltip> -->
|
||||
</q-btn>
|
||||
</q-td>
|
||||
</q-tr>
|
||||
</template>
|
||||
<!-- <template v-slot:pagination="scope">
|
||||
<q-pagination
|
||||
v-model="reqMaster.page"
|
||||
active-color="primary"
|
||||
color="dark"
|
||||
:max="totalPage"
|
||||
:max-pages="5"
|
||||
size="sm"
|
||||
boundary-links
|
||||
direction-links
|
||||
></q-pagination>
|
||||
</template> -->
|
||||
</d-table>
|
||||
</div>
|
||||
</div>
|
||||
</q-card>
|
||||
</div>
|
||||
</div>
|
||||
</q-card-section>
|
||||
</q-card-section>
|
||||
</q-card>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.tree-container {
|
||||
overflow: auto;
|
||||
height: 74vh;
|
||||
border: 1px solid #e6e6e7;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.my-list-link {
|
||||
color: rgb(118, 168, 222);
|
||||
border-radius: 5px;
|
||||
background: #a3d3fb48 !important;
|
||||
font-weight: 600;
|
||||
border: 1px solid rgba(175, 185, 196, 0.217);
|
||||
}
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue