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

714 lines
24 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 { useQuasar } from "quasar";
import { useCounterMixin } from "@/stores/mixin";
import { useTransferDataStore } from "@/modules/05_placement/store";
import http from "@/plugins/http";
import config from "@/app.config";
2023-07-28 08:34:52 +07:00
import { useRouter } from "vue-router";
2023-07-28 08:34:52 +07:00
import DialogHeader from "@/modules/05_placement/components/Receive/DialogHeader.vue";
import DialogOrgTree from "@/modules/05_placement/components/Receive/receiveModal.vue";
import type { QTableProps } from "quasar";
import type {
ResponseData,
ResponseRow,
} from "@/modules/05_placement/interface/response/Receive";
const $q = useQuasar();
const router = useRouter();
const mixin = useCounterMixin(); //เรียกฟังก์ชันกลาง
const transferStore = useTransferDataStore();
const { statusText } = transferStore;
const {
showLoader,
hideLoader,
dialogMessage,
success,
messageError,
date2Thai,
2023-08-17 11:40:46 +07:00
dialogRemove,
} = mixin;
const selected = ref<ResponseRow[]>([]);
2023-07-28 08:34:52 +07:00
const modal = ref<boolean>(false);
const popup = () => {
const row = filters.value.filter(
(r: ResponseRow) =>
(r.status == "WAITTING" || r.status == "PENDING" || r.status == "APPROVE") && r.positionNumber != null
);
rows2.value = row;
2023-07-28 08:34:52 +07:00
modal.value = true;
};
const modalupload = ref<boolean>(false);
2023-07-28 08:34:52 +07:00
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",
"dateText",
"statusText",
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",
"dateText",
"statusText",
2023-07-28 08:34:52 +07:00
]); //ค้นหา คอลัมน์ คอลัมน์ที่แสดง
const filterKeyword = ref<string>("");
const filterKeyword2 = ref<string>("");
const filterRef = ref<any>(null);
const files = ref<any>();
const fileDocDataUpload = ref<File[]>([]);
const listRecevice = ref<any[]>([]);
const filters = ref<ResponseRow[]>([]);
const rows = ref<ResponseRow[]>([
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 rows2 = ref<ResponseRow[]>([
// {
// 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",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
2023-07-28 08:34:52 +07:00
},
{
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",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
2023-07-28 08:34:52 +07:00
},
{
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",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
2023-07-28 08:34:52 +07:00
},
{
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",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "dateText",
align: "left",
label: "วันที่ดำเนินการ",
sortable: true,
field: "dateText",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
sortOrder: "da",
},
{
name: "statusText",
align: "left",
label: "สถานะ",
sortable: true,
field: "statusText",
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
},
]);
const columns2 = ref<QTableProps["columns"]>([
{
name: "no",
align: "left",
label: "ลำดับ",
sortable: true,
field: "no",
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: "citizenId",
2023-07-28 08:34:52 +07:00
align: "left",
label: "เลขประจำตัวประชาชน",
2023-07-28 08:34:52 +07:00
sortable: true,
field: "citizenId",
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: "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",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
2023-07-28 08:34:52 +07:00
},
{
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",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "dateText",
align: "left",
label: "วันที่ดำเนินการ",
sortable: true,
field: "dateText",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
sortOrder: "da",
},
{
name: "statusText",
align: "left",
label: "สถานะ",
sortable: true,
field: "statusText",
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
},
]);
onMounted(() => {
fecthlistRecevice();
});
const fecthlistRecevice = async () => {
showLoader();
await http
.get(config.API.receiveData())
.then((res: any) => {
const response = res.data.result;
listRecevice.value = response;
// console.log(response);
let list: ResponseRow[] = [];
response.map((e: ResponseData) => {
list.push({
personalId: e.id ?? "",
citizenId: e.citizenId ?? "-",
2023-08-17 11:40:46 +07:00
fullname: e.prefix + e.firstname + " " + e.lastname,
organizationName:
e.organizationName +
" " +
e.organizationShortName +
" " +
e.positionNumber +
" " +
e.positionPath,
orgName: e.organizationName,
organizationShortName: e.organizationShortName,
positionNumber: e.positionNumber,
positionPath: e.positionPath,
birthday: e.dateOfBirth == null ? "-" : date2Thai(e.dateOfBirth),
status: e.status,
statusText: statusText(e.status ?? ""),
createdAt: e.createdAt !== null ? new Date(e.createdAt) : null,
dateText: e.createdAt !== null ? date2Thai(e.createdAt) : "-",
});
});
// console.log(list);
rows.value = list;
filters.value = list;
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
};
const fileUploadDoc = async (files: any) => {
files.forEach((file: any) => {
fileDocDataUpload.value.push(file);
});
};
const addUpload = async () => {
// showLoader();
// await http
// .post(config.API.listRoundInsignia())
// .then(() => {
// success($q, "บันทึกข้อมูลสำเร็จ");
// })
// .catch((e) => {
// messageError($q, e);
// })
// .finally(async () => {
// hideLoader();
// });
};
const SaveData = async () => {
await addUpload();
await clickCloseUpload();
};
const resetFilter = () => {
filterKeyword.value = "";
filterKeyword2.value = "";
filterRef.value.focus();
};
const checkSelected = computed(() => {
if (selected.value.length === 0) {
return true;
}
});
const add = () => {
router.push(`/receive/add`);
};
const clickClose = () => {
modal.value = false;
};
const clickCloseUpload = () => {
modalupload.value = false;
};
const openModalTree = (id: string) => {
personalId.value = id;
2023-08-07 16:22:10 +07:00
console.log(personalId.value);
personal.value = listRecevice.value.filter((e: any) => e.id === id);
modalTree.value = true;
2023-07-28 08:34:52 +07:00
};
const openUpload = (id: string) => {
personalId.value = id;
modalupload.value = true;
};
const openDelete = (id: string) => {
2023-08-17 11:40:46 +07:00
dialogRemove($q, async () => await fetchDataDelete(id));
};
const fetchDataDelete = async (id: string) => {
showLoader();
await http
.delete(config.API.receiveDataId(id))
.then((res) => {
success($q, "ลบข้อมูลสำเร็จ");
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
fecthlistRecevice();
hideLoader();
});
};
2023-07-28 08:34:52 +07:00
const closeModalTree = async () => {
2023-08-07 17:18:18 +07:00
await fecthlistRecevice();
2023-07-28 08:34:52 +07:00
modalTree.value = false;
};
const nextPage = (row: any) => {
router.push({
path: `/receive/${row.personalId}`,
});
};
const saveOrder = async () => {
const id = selected.value.map((r: any) => r.personalId);
const body = {
id,
};
showLoader();
await http
.post(config.API.receiveReport, body)
.then((res: any) => {
// const data = res.data.result;
// console.log(data);
success($q, "ส่งไปออกคำสั่งรับโอนสำเร็จ");
clickClose();
})
.catch((e) => {
messageError($q, e);
})
.finally(async () => {
await fecthlistRecevice();
hideLoader();
});
};
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>
<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 />
<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" />
<q-icon v-if="filterKeyword !== ''" name="clear" class="cursor-pointer" @click="resetFilter" />
2023-07-28 08:34:52 +07:00
</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" />
2023-07-28 08:34:52 +07:00
</div>
<div class="col-12 q-pt-sm">
<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>
<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>
<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
? `(${props.row.organizationShortName})`
: ""
}}
</div>
<div class="text-weight-light">
{{
props.row.positionPath !== null
? props.row.positionPath
: "-"
}}
{{
props.row.positionNumber !== null
? `(${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-td key="dateText" :props="props" @click="nextPage(props.row)">
{{ props.row.dateText }}
</q-td>
<q-td key="statusText" :props="props" @click="nextPage(props.row)">
{{ props.row.statusText }}
</q-td>
2023-07-28 08:34:52 +07:00
<q-td auto-width>
<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">
<q-item clickable v-close-popup @click="openModalTree(props.row.personalId)" :disable="props.row.status == 'REPORT' ||
props.row.status == 'DONE'
">
<q-item-section style="min-width: 0px" avatar class="q-py-sm">
<q-icon :color="props.row.status == 'REPORT' ||
props.row.status == 'DONE'
? 'grey'
: 'primary'
" size="xs" name="mdi-bookmark-outline" />
2023-07-28 08:34:52 +07:00
</q-item-section>
<q-item-section>เลอกหนวยงานทบโอน</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="openUpload(props.row.personalId)" :disable="props.row.status == 'REPORT' ||
props.row.status == 'DONE'
">
<q-item-section style="min-width: 0px" avatar class="q-py-sm">
<q-icon :color="props.row.status == 'REPORT' ||
props.row.status == 'DONE'
? 'grey'
: 'blue'
" size="xs" name="attach_file" />
</q-item-section>
<q-item-section>พโหลดเอกสาร</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="openDelete(props.row.personalId)" :disable="props.row.status == 'REPORT' ||
props.row.status == 'DONE'
">
<q-item-section style="min-width: 0px" avatar class="q-py-sm">
<q-tooltip>ลบขอม</q-tooltip>
<q-icon :color="props.row.status == 'REPORT' ||
props.row.status == 'DONE'
? 'grey'
: '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">
<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" />
<q-icon v-if="filterKeyword2 !== ''" name="clear" class="cursor-pointer" @click="resetFilter" />
2023-07-28 08:34:52 +07:00
</template>
</q-input>
<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>
<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">
<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>
<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>
<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
? `(${props.row.organizationShortName})`
: ""
}}
</div>
<div class="text-weight-light">
{{
props.row.positionPath !== null
? props.row.positionPath
: "-"
}}
{{
props.row.positionNumber !== null
? `(${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-td key="dateText" :props="props" @click="nextPage(props.row)">
{{ props.row.dateText }}
</q-td>
<q-td key="statusText" :props="props" @click="nextPage(props.row)">
{{ props.row.statusText }}
</q-td>
2023-07-28 08:34:52 +07:00
</q-tr>
</template>
</d-table>
</q-card-section>
<q-card-actions align="right" class="bg-white text-teal">
<q-btn label="ส่งไปออกคำสั่ง" @click="saveOrder" :disable="checkSelected" color="public" />
2023-07-28 08:34:52 +07:00
</q-card-actions>
</q-card>
</q-dialog>
<q-dialog v-model="modalupload">
<q-card style="width: 600px">
<DialogHeader title="อัพโหลดเอกสาร" :close="clickCloseUpload" />
<q-separator />
<q-separator />
<q-card-section class="q-pt-none">
<div class="col-12 row items-center q-col-gutter-sm">
<div class="col-12">
<q-file outlined dense v-model="files" @added="fileUploadDoc" label="อัพโหลดเอกสาร" lazy-rules>
<!-- :rules="[
(val) => val || 'กรุณาเลือกไฟล์หนังสือถึงหน่วยงานที่รับโอน',
]" -->
<template v-slot:prepend>
<q-icon name="attach_file" />
</template>
</q-file>
</div>
</div>
</q-card-section>
<q-card-actions class="text-primary q-py-sm">
<q-space />
<q-btn flat round color="public" @click="SaveData" icon="mdi-content-save-outline">
<q-tooltip>นท</q-tooltip>
</q-btn>
</q-card-actions>
</q-card>
</q-dialog>
<DialogOrgTree v-model:modal="modalTree" :close="closeModalTree" :personal="personal" :personalId="personalId" />
2023-08-07 16:22:10 +07:00
<!-- :personalId="personalId" -->
2023-07-28 08:34:52 +07:00
</template>
<style scoped lang="scss"></style>