- ปรับเมนูเอาทดลองงานมาเป็นเมนูหลัก เพิ่มออกคำสั่งย้ายสับเปลี่ยนตำแหน่ง
- เพิ่มย้ายสับเปลี่ยนตำแหน่ง
This commit is contained in:
parent
5f5d57b7dc
commit
c89a4d2dee
8 changed files with 2510 additions and 22 deletions
|
|
@ -0,0 +1,598 @@
|
|||
<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 type { OpType } from "@/modules/05_placement/interface/response/Main";
|
||||
import http from "@/plugins/http";
|
||||
import config from "@/app.config";
|
||||
|
||||
import DialogOrgSelect from "@/components/Dialogs/DialogOrgSelect.vue";
|
||||
|
||||
const posType = ref<string>("");
|
||||
const posLevel = ref<string>("");
|
||||
const position = ref<string>("");
|
||||
const typeModal = ref<string | null>(null);
|
||||
const dataRows = ref<any[]>([]);
|
||||
|
||||
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 modalTree = ref<boolean>(false);
|
||||
const personalId = ref<string>("");
|
||||
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",
|
||||
"citizenId",
|
||||
"fullname",
|
||||
"organizationName",
|
||||
"dateOfBirth",
|
||||
"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: "citizenId",
|
||||
align: "left",
|
||||
label: "เลขประจำตัวประชาชน",
|
||||
sortable: true,
|
||||
field: "citizenId",
|
||||
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: "dateOfBirth",
|
||||
align: "left",
|
||||
label: "วัน/เดือน/ปี เกิด",
|
||||
sortable: true,
|
||||
field: "dateOfBirth",
|
||||
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;
|
||||
};
|
||||
|
||||
// เพิ่มรายชื่อเพื่อย้ายสับเปลี่ยนตำแหน่ง
|
||||
const addPerson = () => {};
|
||||
|
||||
//ดึงข้อมูล API
|
||||
const fecthLists = async () => {
|
||||
// showLoader();
|
||||
// rows.value = [];
|
||||
// await http
|
||||
// .get(config.API.appointmentMain())
|
||||
// .then((res) => {
|
||||
// let response = res.data.result;
|
||||
// rows.value = response;
|
||||
// })
|
||||
// .catch((e) => {
|
||||
// messageError($q, e);
|
||||
// })
|
||||
// .finally(() => {
|
||||
// hideLoader();
|
||||
// });
|
||||
|
||||
rows.value = [
|
||||
{
|
||||
id: "08dc7e02-08ff-4cb3-85a7-3feb2a38614d",
|
||||
profileId: "1526d9d3-d8b1-43ab-81b5-a84dfbe99511",
|
||||
prefix: "นางสาว",
|
||||
firstName: "นิรมล",
|
||||
lastName: "เต็มเปี่ยม",
|
||||
citizenId: "3140700369248",
|
||||
dateOfBirth: "1975-12-06T17:00:00",
|
||||
root: "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร",
|
||||
rootId: "3084a630-4715-413d-98ab-0ba59c5c115e",
|
||||
rootShortName: "สกก.",
|
||||
child1: "กองสรรหาบุคคล",
|
||||
child1Id: "2e49b10a-1a59-41ec-8b62-98c301af39e3",
|
||||
child1ShortName: "กสบ.",
|
||||
child2: null,
|
||||
child2Id: null,
|
||||
child2ShortName: null,
|
||||
child3: null,
|
||||
child3Id: null,
|
||||
child3ShortName: null,
|
||||
child4: null,
|
||||
child4Id: null,
|
||||
child4ShortName: null,
|
||||
orgRevisionId: "7cf4b332-694a-498b-8af2-d1b86d667506",
|
||||
positionId: "c905cfb7-63f5-4e9e-a1f4-e7a709d018f3",
|
||||
posMasterNo: 1,
|
||||
position: null,
|
||||
positionField: null,
|
||||
posTypeId: "1526d9d3-d8b1-43ab-81b5-a84dfbe08081",
|
||||
posTypeName: "อำนวยการ",
|
||||
posLevelId: "1526d9d3-d8b1-43ab-81b5-a84dfbe09262",
|
||||
posLevelName: "ต้น",
|
||||
node: 1,
|
||||
nodeName: "กองสรรหาบุคคล",
|
||||
nodeId: "2e49b10a-1a59-41ec-8b62-98c301af39e3",
|
||||
nodeShortName: "กสบ.",
|
||||
rootOld: "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร",
|
||||
rootOldId: "3084a630-4715-413d-98ab-0ba59c5c115e",
|
||||
rootShortNameOld: "สกก.",
|
||||
child1Old: null,
|
||||
child1OldId: null,
|
||||
child1ShortNameOld: null,
|
||||
child2Old: null,
|
||||
child2OldId: null,
|
||||
child2ShortNameOld: null,
|
||||
child3Old: null,
|
||||
child3OldId: null,
|
||||
child3ShortNameOld: null,
|
||||
child4Old: null,
|
||||
child4OldId: null,
|
||||
child4ShortNameOld: null,
|
||||
posMasterNoOld: 12,
|
||||
posTypeOldId: "1526d9d3-d8b1-43ab-81b5-a84dfbe08071",
|
||||
posTypeNameOld: "วิชาการ",
|
||||
posLevelOldId: "1526d9d3-d8b1-43ab-81b5-a84dfbe08662",
|
||||
posLevelNameOld: "ชำนาญการ",
|
||||
status: "PENDING",
|
||||
amount: null,
|
||||
reportingDate: "2024-06-05T02:55:48.319",
|
||||
isActive: true,
|
||||
positionDate: "2018-06-11T02:56:00",
|
||||
reason: "1",
|
||||
educationOld: "-",
|
||||
salary: 10000,
|
||||
positionTypeOld: "วิชาการ",
|
||||
positionLevelOld: "ชำนาญการ",
|
||||
positionNumberOld: "12",
|
||||
organizationPositionOld:
|
||||
"นักวิชาการเงินและบัญชี-สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร",
|
||||
amountOld: 10000,
|
||||
organizationOld: "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร",
|
||||
posmasterId: "bb753819-357b-4d12-a445-c93c2bc67096",
|
||||
positionOld: "นักวิชาการเงินและบัญชี",
|
||||
createdAt: "2024-05-27T11:03:58.545266",
|
||||
typeCommand: "MOVE",
|
||||
},
|
||||
{
|
||||
id: "08dc7b99-239c-4ae0-8246-45dbb2059fa4",
|
||||
profileId: "1526d9d3-d8b1-43ab-81b5-a84dfbe99500",
|
||||
prefix: "นาย",
|
||||
firstName: "ณัฐพงศ์",
|
||||
lastName: "ดิษยบุตร",
|
||||
citizenId: "3100903812600",
|
||||
dateOfBirth: "1964-05-13T17:00:00",
|
||||
root: "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร",
|
||||
rootId: "3084a630-4715-413d-98ab-0ba59c5c115e",
|
||||
rootShortName: "สกก.",
|
||||
child1: null,
|
||||
child1Id: null,
|
||||
child1ShortName: null,
|
||||
child2: null,
|
||||
child2Id: null,
|
||||
child2ShortName: null,
|
||||
child3: null,
|
||||
child3Id: null,
|
||||
child3ShortName: null,
|
||||
child4: null,
|
||||
child4Id: null,
|
||||
child4ShortName: null,
|
||||
orgRevisionId: "7cf4b332-694a-498b-8af2-d1b86d667506",
|
||||
positionId: "2f12e761-a0ee-45a9-8b96-7ad88f297660",
|
||||
posMasterNo: 1,
|
||||
position: null,
|
||||
positionField: null,
|
||||
posTypeId: "1526d9d3-d8b1-43ab-81b5-a84dfbe08091",
|
||||
posTypeName: "บริหาร",
|
||||
posLevelId: "1526d9d3-d8b1-43ab-81b5-a84dfbe09362",
|
||||
posLevelName: "สูง",
|
||||
node: 0,
|
||||
nodeName: "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร",
|
||||
nodeId: "3084a630-4715-413d-98ab-0ba59c5c115e",
|
||||
nodeShortName: "สกก.",
|
||||
rootOld: "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร",
|
||||
rootOldId: "3084a630-4715-413d-98ab-0ba59c5c115e",
|
||||
rootShortNameOld: "สกก.",
|
||||
child1Old: null,
|
||||
child1OldId: null,
|
||||
child1ShortNameOld: null,
|
||||
child2Old: null,
|
||||
child2OldId: null,
|
||||
child2ShortNameOld: null,
|
||||
child3Old: null,
|
||||
child3OldId: null,
|
||||
child3ShortNameOld: null,
|
||||
child4Old: null,
|
||||
child4OldId: null,
|
||||
child4ShortNameOld: null,
|
||||
posMasterNoOld: 1,
|
||||
posTypeOldId: "1526d9d3-d8b1-43ab-81b5-a84dfbe08091",
|
||||
posTypeNameOld: "บริหาร",
|
||||
posLevelOldId: "1526d9d3-d8b1-43ab-81b5-a84dfbe09362",
|
||||
posLevelNameOld: "สูง",
|
||||
status: "PENDING",
|
||||
amount: null,
|
||||
reportingDate: "2024-05-24T05:01:11.455",
|
||||
isActive: true,
|
||||
positionDate: "2024-05-07T02:31:00",
|
||||
reason: null,
|
||||
educationOld: "-",
|
||||
salary: 10,
|
||||
positionTypeOld: "บริหาร",
|
||||
positionLevelOld: "ต้น",
|
||||
positionNumberOld: "1",
|
||||
organizationPositionOld:
|
||||
"นักบริหาร-สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร/",
|
||||
amountOld: 10,
|
||||
organizationOld: "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร/",
|
||||
posmasterId: "74a4ab16-1958-4e7b-b807-a39d8b15472d",
|
||||
positionOld: "นักบริหาร",
|
||||
createdAt: "2024-05-24T09:28:03.669054",
|
||||
typeCommand: "APPOINT",
|
||||
},
|
||||
];
|
||||
};
|
||||
|
||||
// เปิดโครงสร้าง
|
||||
const openModalTree = (data: any, type: string) => {
|
||||
personalId.value = data.id;
|
||||
modalTree.value = true;
|
||||
typeModal.value = type;
|
||||
dataRows.value = data;
|
||||
posType.value = data.posTypeNameOld;
|
||||
posLevel.value = data.positionLevelOld;
|
||||
position.value = data.positionOld;
|
||||
};
|
||||
//เบข้อมูล
|
||||
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 detailPage = (id: string) => {
|
||||
router.push({
|
||||
path: `/change-positions/personal/${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">
|
||||
<q-btn
|
||||
icon="mdi-arrow-left"
|
||||
unelevated
|
||||
round
|
||||
dense
|
||||
flat
|
||||
color="primary"
|
||||
class="q-mr-sm"
|
||||
@click="router.push(`/change-positions`)"
|
||||
/>
|
||||
|
||||
รายชื่อผู้ที่ย้ายสับเปลี่ยนตำแหน่ง
|
||||
</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="addPerson()"
|
||||
size="14px"
|
||||
flat
|
||||
round
|
||||
color="primary"
|
||||
icon="add"
|
||||
>
|
||||
<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"
|
||||
:props="props"
|
||||
@click="detailPage(props.row.id)"
|
||||
>
|
||||
<div v-if="col.name == 'no'">
|
||||
{{ props.rowIndex + 1 }}
|
||||
</div>
|
||||
<div v-else-if="col.name == 'fullname'">
|
||||
{{
|
||||
props.row.firstName
|
||||
? `${props.row.prefix ?? ""}${
|
||||
props.row.firstName ?? ""
|
||||
} ${props.row.lastName ?? ""}`
|
||||
: "-"
|
||||
}}
|
||||
</div>
|
||||
|
||||
<div v-else-if="col.name == 'status'">
|
||||
{{ props.row.status ? statusText(props.row.status) : "-" }}
|
||||
</div>
|
||||
<div v-else-if="col.name == 'dateOfBirth'">
|
||||
{{
|
||||
props.row.dateOfBirth
|
||||
? date2Thai(props.row.dateOfBirth)
|
||||
: "-"
|
||||
}}
|
||||
</div>
|
||||
<div v-else-if="col.name == 'organizationName'">
|
||||
<div class="col-4">
|
||||
<div class="text-weight-medium">
|
||||
{{ props.row.root !== null ? props.row.root : "-" }}
|
||||
{{
|
||||
props.row.rootShortName !== null
|
||||
? `(${props.row.rootShortName})`
|
||||
: ""
|
||||
}}
|
||||
</div>
|
||||
<div class="text-weight-light">
|
||||
{{
|
||||
props.row.nodeName !== null ? props.row.nodeName : ""
|
||||
}}
|
||||
{{
|
||||
props.row.nodeShortName !== null
|
||||
? `(${props.row.nodeShortName}${props.row.posMasterNo})`
|
||||
: ""
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else-if="col.name == 'createdAt'">
|
||||
{{
|
||||
props.row.createdAt ? date2Thai(props.row.createdAt) : "-"
|
||||
}}
|
||||
</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="openModalTree(props.row, 'MOVE')"
|
||||
>
|
||||
<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.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>
|
||||
|
||||
<DialogOrgSelect
|
||||
:title="`เลือกหน่วยงานที่รับย้าย`"
|
||||
v-model:modal="modalTree"
|
||||
v-model:type="typeModal"
|
||||
:posType="posType"
|
||||
:posLevel="posLevel"
|
||||
:position="position"
|
||||
:dataRows="dataRows"
|
||||
:onSubmit="onSave"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<style scoped lang="scss"></style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue