506 lines
15 KiB
Vue
506 lines
15 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted, watch } from "vue";
|
|
import type { QTableProps } from "quasar";
|
|
import { useQuasar } from "quasar";
|
|
import { useRoute, 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";
|
|
import DialogEvalute from "@/modules/05_placement/components/ChangePosition/DialogChange.vue";
|
|
|
|
const router = useRouter();
|
|
const route = useRoute();
|
|
const id = ref<string>(route.params.id ? route.params.id.toString() : "");
|
|
|
|
const total = ref<number>(0);
|
|
const totalList = ref<number>(1);
|
|
const modalDialog = ref<boolean>(false);
|
|
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 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",
|
|
"birthDate",
|
|
"lastUpdatedAt",
|
|
"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: "birthDate",
|
|
align: "left",
|
|
label: "วัน/เดือน/ปี เกิด",
|
|
sortable: true,
|
|
field: "birthDate",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "lastUpdatedAt",
|
|
align: "left",
|
|
label: "วันที่ดำเนินการ",
|
|
sortable: true,
|
|
field: "lastUpdatedAt",
|
|
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();
|
|
fecthLists();
|
|
};
|
|
|
|
//ปิด modal
|
|
const clickClose = () => {
|
|
modal.value = false;
|
|
};
|
|
|
|
// เพิ่มรายชื่อเพื่อย้ายสับเปลี่ยนตำแหน่ง
|
|
const addPerson = () => {
|
|
modalDialog.value = true;
|
|
};
|
|
|
|
//ดึงข้อมูล API
|
|
const fecthLists = async () => {
|
|
showLoader();
|
|
await http
|
|
.get(
|
|
config.API.changePositionById +
|
|
`/${id.value}?page=${pagination.value.page}&pageSize=${pagination.value.rowsPerPage}&searchKeyword=${filterKeyword.value}`
|
|
)
|
|
.then(async (res) => {
|
|
let response = await res.data.result;
|
|
totalList.value = Math.ceil(
|
|
res.data.result.total / pagination.value.rowsPerPage
|
|
);
|
|
total.value = response.total;
|
|
rows.value = response.data;
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
};
|
|
|
|
// เปิดโครงสร้าง
|
|
const openModalTree = (data: any, type: string) => {
|
|
personalId.value = data.id;
|
|
modalTree.value = true;
|
|
typeModal.value = type;
|
|
dataRows.value = data;
|
|
posType.value = data.posTypeOldId;
|
|
posLevel.value = data.posLevelOldId;
|
|
position.value = data.positionOld;
|
|
};
|
|
//เบข้อมูล
|
|
const clickDelete = (id: string) => {
|
|
dialogRemove($q, () => {
|
|
showLoader();
|
|
http
|
|
.delete(config.API.changePositionByIdProfile + `/${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.changePositionByIdProfile + `/position/${personalId.value}`,
|
|
{
|
|
node: data.node,
|
|
nodeId: data.nodeId,
|
|
posmasterId: data.posmasterId,
|
|
posMasterNo: data.posMasterNo,
|
|
positionId: data.positionId,
|
|
orgRevisionId: data.orgRevisionId,
|
|
position: data.positionName,
|
|
positionField: data.positionField,
|
|
posTypeId: data.posTypeId,
|
|
posTypeName: data.posTypeName,
|
|
posLevelId: data.posLevelId,
|
|
posLevelName: data.posLevelName,
|
|
}
|
|
)
|
|
.then((res) => {
|
|
modalTree.value = false;
|
|
success($q, "บันทึกสำเร็จ");
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(async () => {
|
|
fecthLists();
|
|
hideLoader();
|
|
});
|
|
}
|
|
|
|
function updatePagination(newPagination: any) {
|
|
pagination.value.page = 1;
|
|
pagination.value.rowsPerPage = newPagination.rowsPerPage;
|
|
}
|
|
|
|
watch(
|
|
() => pagination.value.rowsPerPage,
|
|
async () => {
|
|
await fecthLists();
|
|
}
|
|
);
|
|
|
|
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="ค้นหา"
|
|
@keyup.enter="fecthLists()"
|
|
>
|
|
<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"
|
|
row-key="id"
|
|
:visible-columns="visibleColumns"
|
|
:rows-per-page-options="[1, 25, 50, 100]"
|
|
@update:pagination="updatePagination"
|
|
>
|
|
<template v-slot:pagination="scope">
|
|
ทั้งหมด {{ total }} รายการ
|
|
<q-pagination
|
|
v-model="pagination.page"
|
|
active-color="primary"
|
|
color="dark"
|
|
:max="Number(totalList)"
|
|
size="sm"
|
|
boundary-links
|
|
direction-links
|
|
:max-pages="5"
|
|
@update:model-value="fecthLists"
|
|
></q-pagination>
|
|
</template>
|
|
<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'">
|
|
{{
|
|
(pagination.page - 1) * pagination.rowsPerPage +
|
|
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 == 'birthDate'">
|
|
{{
|
|
props.row.birthDate ? date2Thai(props.row.birthDate) : "-"
|
|
}}
|
|
</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.root ? props.row.root : "" }}
|
|
{{
|
|
props.row.rootShortName
|
|
? `(${props.row.rootShortName}${props.row.posMasterNo})`
|
|
: ""
|
|
}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-else-if="col.name == 'lastUpdatedAt'">
|
|
{{
|
|
props.row.lastUpdatedAt
|
|
? date2Thai(props.row.lastUpdatedAt)
|
|
: "-"
|
|
}}
|
|
</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"
|
|
/>
|
|
|
|
<DialogEvalute v-model:modal="modalDialog" :getData="fecthLists" />
|
|
</template>
|
|
|
|
<style scoped lang="scss"></style>
|