hrms-mgt/src/modules/05_placement/components/Receive/receiveMain.vue

618 lines
18 KiB
Vue
Raw Normal View History

2023-07-28 08:34:52 +07:00
<script setup lang="ts">
2023-08-07 16:22:10 +07:00
import { ref, computed, onMounted } from "vue";
2023-07-28 08:34:52 +07:00
import type { QTableProps } from "quasar";
import { useQuasar } from "quasar";
import { useRouter } from "vue-router";
import DialogFooter from "@/modules/05_placement/components/Receive/DialogFooter.vue";
import DialogHeader from "@/modules/05_placement/components/Receive/DialogHeader.vue";
import DialogOrgTree from "@/modules/05_placement/components/Receive/receiveModal.vue";
import { useCounterMixin } from "@/stores/mixin";
import http from "@/plugins/http";
2023-08-07 16:22:10 +07:00
import config from "@/app.config";
const mixin = useCounterMixin(); //เรียกฟังก์ชันกลาง
2023-08-07 16:22:10 +07:00
const { showLoader, hideLoader, dateText, success, messageError, date2Thai } =
mixin;
2023-07-28 08:34:52 +07:00
const selected = ref([]);
const checkSelected = computed(() => {
if (selected.value.length === 0) {
return true;
}
});
const add = () => {
router.push(`/receive/add`);
};
2023-07-28 08:34:52 +07:00
const clickClose = () => {
modal.value = false;
};
const $q = useQuasar();
const modal = ref<boolean>(false);
const popup = () => {
modal.value = true;
};
const router = useRouter();
const modalTree = ref<boolean>(false);
const personal = ref<any[]>([]);
const personalId = ref<string>("");
const visibleColumns = ref<string[]>([
"no",
"citizenId",
2023-07-28 08:34:52 +07:00
"fullname",
"organizationName",
2023-08-07 16:22:10 +07:00
"birthday",
2023-07-28 08:34:52 +07:00
]);
2023-07-28 08:34:52 +07:00
const visibleColumns2 = ref<string[]>([
"no",
"citizenId",
2023-07-28 08:34:52 +07:00
"fullname",
"organizationName",
2023-08-07 16:22:10 +07:00
"birthday",
2023-07-28 08:34:52 +07:00
]); //ค้นหา คอลัมน์ คอลัมน์ที่แสดง
const filterKeyword = ref<string>("");
const filterKeyword2 = ref<string>("");
const filterRef = ref<any>(null);
const resetFilter = () => {
filterKeyword.value = "";
filterKeyword2.value = "";
filterRef.value.focus();
};
2023-08-07 16:22:10 +07:00
onMounted(() => {
fecthlistRecevice();
});
const fecthlistRecevice = async () => {
showLoader();
await http
.get(config.API.receiveData())
.then((res) => {
let response = res.data.result;
console.log(response);
rows.value = response.map((e: any) => ({
personalId: e.id,
citizenId: e.citizenId,
fullname: e.firstname + " " + e.lastname,
positionNumber: e.positionNumber,
positionPath: e.positionPath,
birthday: date2Thai(e.dateOfBirth),
}));
})
.catch((e) => {
console.log(typeof e);
})
.finally(() => {
hideLoader();
});
};
2023-07-28 08:34:52 +07:00
// const nextPage = (id:string) => {
// router.push("/retirement/resign/"+id);
// };
const rows = ref<any>([
2023-08-07 16:22:10 +07:00
// {
// personalId: "08db721d-add6-47b0-8a13-5f45d106e8d1",
// citizenId: "1234444332222",
// fullname: "นางสาวอย พชช",
// organizationName: "นักจัดการงานทั่วไป",
// orgName: "กลุ่มงานช่วยนักบริหาร",
// organizationShortName: "สกจ.",
// positionNumber: "กก. 1",
// positionPath: "นักจัดการงานทั่วไป",
// birthday: dateText(new Date("1989-09-03")),
// },
2023-07-28 08:34:52 +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",
2023-07-28 08:34:52 +07:00
align: "left",
label: "เลขประจำตัวประชาชน",
2023-07-28 08:34:52 +07:00
sortable: true,
field: "fullname",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "fullname",
2023-07-28 08:34:52 +07:00
align: "left",
label: "ชื่อ-นามสกุล",
2023-07-28 08:34:52 +07:00
sortable: true,
field: "fullname",
2023-07-28 08:34:52 +07:00
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "organizationName",
2023-07-28 08:34:52 +07:00
align: "left",
label: "หน่วยงานที่รับโอน",
sortable: true,
field: "organizationName",
2023-07-28 08:34:52 +07:00
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
2023-07-28 08:34:52 +07:00
},
{
name: "birthday",
2023-07-28 08:34:52 +07:00
align: "left",
label: "วัน/เดือน/ปี เกิด",
2023-07-28 08:34:52 +07:00
sortable: true,
field: "birthday",
2023-07-28 08:34:52 +07:00
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",
},
{
name: "citizenId",
2023-07-28 08:34:52 +07:00
align: "left",
label: "เลขประจำตัวประชาชน",
2023-07-28 08:34:52 +07:00
sortable: true,
field: "fullname",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "fullname",
2023-07-28 08:34:52 +07:00
align: "left",
label: "ชื่อ-นามสกุล",
2023-07-28 08:34:52 +07:00
sortable: true,
field: "fullname",
2023-07-28 08:34:52 +07:00
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "organizationName",
2023-07-28 08:34:52 +07:00
align: "left",
label: "หน่วยงานที่รับโอน",
2023-07-28 08:34:52 +07:00
sortable: true,
field: "organizationName",
2023-07-28 08:34:52 +07:00
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
2023-07-28 08:34:52 +07:00
},
{
name: "birthday",
2023-07-28 08:34:52 +07:00
align: "left",
label: "วัน/เดือน/ปี เกิด",
2023-07-28 08:34:52 +07:00
sortable: true,
field: "birthday",
2023-07-28 08:34:52 +07:00
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
]);
const openModalTree = (id: string) => {
personalId.value = id;
2023-08-07 16:22:10 +07:00
console.log(personalId.value);
2023-07-28 08:34:52 +07:00
personal.value = [];
modalTree.value = true;
2023-07-28 08:34:52 +07:00
};
const openDelete = (id: string) => {
2023-08-07 16:22:10 +07:00
console.log(id);
$q.dialog({
title: `ลบข้อมูล`,
message: `ต้องการทำการลบข้อมูลนี้ใช่หรือไม่?`,
cancel: "ยกเลิก",
ok: "ยืนยัน",
persistent: true,
})
.onOk(async () => {
showLoader();
await http
2023-08-07 16:22:10 +07:00
.delete(config.API.receiveDataId(id))
.then((res) => {
success($q, "ลบข้อมูลสำเร็จ");
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
2023-08-07 16:22:10 +07:00
fecthlistRecevice();
hideLoader();
});
})
2023-08-07 16:22:10 +07:00
.onCancel(() => {});
};
2023-07-28 08:34:52 +07:00
const closeModalTree = async () => {
// await getTable();
modalTree.value = false;
};
const nextPage = (row: any) => {
router.push({
path: `/receive/${row.personalId}`,
});
};
2023-07-28 08:34:52 +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 flat round color="primary" @click="add" icon="mdi-plus">
<q-tooltip>เพมขอม</q-tooltip>
</q-btn>
2023-08-07 16:22:10 +07:00
<q-btn
@click="popup()"
size="14px"
flat
round
color="add"
icon="mdi-account-arrow-right"
>
2023-07-28 08:34:52 +07:00
<q-tooltip>งไปออกคำสงรบโอน</q-tooltip>
</q-btn>
<q-space />
2023-08-07 16:22:10 +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-07-28 08:34:52 +07:00
<template v-slot:append>
<q-icon v-if="filterKeyword == ''" name="search" />
2023-08-07 16:22:10 +07:00
<q-icon
v-if="filterKeyword !== ''"
name="clear"
class="cursor-pointer"
@click="resetFilter"
/>
2023-07-28 08:34:52 +07:00
</template>
</q-input>
2023-08-07 16:22:10 +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-07-28 08:34:52 +07:00
</div>
<div class="col-12 q-pt-sm">
2023-08-07 16:22:10 +07:00
<d-table
:columns="columns"
:rows="rows"
:filter="filterKeyword"
row-key="fullname"
:visible-columns="visibleColumns"
>
2023-07-28 08:34:52 +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 />
2023-07-28 08:34:52 +07:00
</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)">
2023-07-28 08:34:52 +07:00
{{ props.rowIndex + 1 }}
</q-td>
2023-08-07 16:22:10 +07:00
<q-td
key="citizenId"
:props="props"
@click="nextPage(props.row)"
>
{{ props.row.citizenId }}
2023-07-28 08:34:52 +07:00
</q-td>
2023-08-07 16:22:10 +07:00
<q-td
key="fullname"
:props="props"
@click="nextPage(props.row)"
>
{{ props.row.fullname }}
2023-07-28 08:34:52 +07:00
</q-td>
2023-08-07 16:22:10 +07:00
<q-td
key="organizationName"
:props="props"
@click="nextPage(props.row)"
>
<div
v-if="
props.row.orgName !== null ||
props.row.positionPath !== null
"
>
<div class="col-4">
<div class="text-weight-medium">
2023-08-07 16:22:10 +07:00
{{
props.row.orgName !== null ? props.row.orgName : "-"
}}
{{
props.row.organizationShortName !== null
2023-08-07 16:22:10 +07:00
? `(${props.row.organizationShortName})`
: ""
}}
</div>
<div class="text-weight-light">
{{
props.row.positionPath !== null
2023-08-07 16:22:10 +07:00
? props.row.positionPath
: "-"
}}
{{
props.row.positionNumber !== null
2023-08-07 16:22:10 +07:00
? `(${props.row.positionNumber})`
: ""
}}
</div>
</div>
</div>
<div v-else>
<div class="col-4">
<div class="text-weight-medium">-</div>
</div>
</div>
2023-07-28 08:34:52 +07:00
</q-td>
2023-08-07 16:22:10 +07:00
<q-td
key="birthday"
:props="props"
@click="nextPage(props.row)"
>
{{ props.row.birthday }}
2023-07-28 08:34:52 +07:00
</q-td>
<q-td auto-width>
2023-08-07 16:22:10 +07:00
<q-btn
icon="mdi-dots-vertical"
size="12px"
color="grey-7"
flat
round
dense
>
<q-menu
transition-show="jump-down"
transition-hide="jump-up"
>
2023-07-28 08:34:52 +07:00
<q-list dense style="min-width: 100px">
2023-08-07 16:22:10 +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-07-28 08:34:52 +07:00
</q-item-section>
2023-08-07 16:22:10 +07:00
<q-item-section
>เลอกหนวยงานทบโอน</q-item-section
>
</q-item>
2023-08-07 16:22:10 +07:00
<q-item
clickable
v-close-popup
@click="openDelete(props.row.personalId)"
>
<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>
2023-07-28 08:34:52 +07:00
</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="clickClose" />
<q-separator />
<q-card-section class="q-pt-none">
<div class="row justify-end">
<div class="col-5">
<q-toolbar style="padding: 0">
2023-08-07 16:22:10 +07:00
<q-input
borderless
outlined
dense
debounce="300"
v-model="filterKeyword2"
placeholder="ค้นหา"
style="width: 850px; max-width: auto"
>
2023-07-28 08:34:52 +07:00
<template v-slot:append>
<q-icon v-if="filterKeyword2 == ''" name="search" />
2023-08-07 16:22:10 +07:00
<q-icon
v-if="filterKeyword2 !== ''"
name="clear"
class="cursor-pointer"
@click="resetFilter"
/>
2023-07-28 08:34:52 +07:00
</template>
</q-input>
2023-08-07 16:22:10 +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-07-28 08:34:52 +07:00
</q-toolbar>
</div>
</div>
2023-08-07 16:22:10 +07:00
<d-table
:columns="columns2"
:rows="rows2"
:filter="filterKeyword2"
row-key="personalId"
flat
:visible-columns="visibleColumns2"
selection="multiple"
v-model:selected="selected"
>
2023-07-28 08:34:52 +07:00
<template v-slot:header-selection="scope">
2023-08-07 16:22:10 +07:00
<q-checkbox
keep-color
color="primary"
dense
v-model="scope.selected"
/>
2023-07-28 08:34:52 +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-07 16:22:10 +07:00
<q-checkbox
keep-color
color="primary"
dense
v-model="props.selected"
/>
2023-07-28 08:34:52 +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 }}
2023-07-28 08:34:52 +07:00
</q-td>
<q-td key="fullname" :props="props" @click="nextPage(props.row)">
{{ props.row.fullname }}
2023-07-28 08:34:52 +07:00
</q-td>
2023-08-07 16:22:10 +07:00
<q-td
key="organizationName"
:props="props"
@click="nextPage(props.row)"
>
<div
v-if="
props.row.orgName !== null ||
props.row.positionPath !== null
"
>
<div class="col-4">
<div class="text-weight-medium">
{{ props.row.orgName !== null ? props.row.orgName : "-" }}
{{
props.row.organizationShortName !== null
2023-08-07 16:22:10 +07:00
? `(${props.row.organizationShortName})`
: ""
}}
</div>
<div class="text-weight-light">
{{
props.row.positionPath !== null
2023-08-07 16:22:10 +07:00
? props.row.positionPath
: "-"
}}
{{
props.row.positionNumber !== null
2023-08-07 16:22:10 +07:00
? `(${props.row.positionNumber})`
: ""
}}
</div>
</div>
</div>
<div v-else>
<div class="col-4">
<div class="text-weight-medium">-</div>
</div>
</div>
2023-07-28 08:34:52 +07:00
</q-td>
<q-td key="birthday" :props="props" @click="nextPage(props.row)">
{{ props.row.birthday }}
2023-07-28 08:34:52 +07:00
</q-td>
</q-tr>
</template>
</d-table>
</q-card-section>
<q-card-actions align="right" class="bg-white text-teal">
2023-08-07 16:22:10 +07:00
<q-btn
label="บันทึก"
@click=""
:disable="checkSelected"
color="public"
/>
2023-07-28 08:34:52 +07:00
</q-card-actions>
</q-card>
</q-dialog>
2023-08-07 16:22:10 +07:00
<DialogOrgTree
v-model:modal="modalTree"
:close="closeModalTree"
:personal="personal"
:personalId="personalId"
/>
<!-- :personalId="personalId" -->
2023-07-28 08:34:52 +07:00
</template>
<style scoped lang="scss"></style>