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

453 lines
16 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 Dialogbody from "@/modules/05_placement/components/Receive/Dialogbody.vue";
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 rows2 = ref<ResponseRow[]>([]);
const modal = ref<boolean>(false);
const modalupload = ref<boolean>(false);
const modalTree = ref<boolean>(false);
const myForm = ref<any>();
const personal = ref<any[]>([]);
const personalId = ref<string>("");
const filterKeyword = ref<string>("");
const filterKeyword2 = ref<string>("");
const filterRef = ref<any>(null);
const files = ref<any>();
const listRecevice = ref<any[]>([]);
const filters = ref<ResponseRow[]>([]);
const rows = ref<ResponseRow[]>([]);
const mixin = useCounterMixin(); //เรียกฟังก์ชันกลาง
const transferStore = useTransferDataStore();
const { statusText } = transferStore;
const {
showLoader,
hideLoader,
success,
messageError,
date2Thai,
2023-08-17 11:40:46 +07:00
dialogRemove,
} = mixin;
2023-07-28 08:34:52 +07:00
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;
};
//คอลัม
2023-07-28 08:34:52 +07:00
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 columns = ref<QTableProps["columns"]>([
{
name: "no",
align: "left",
label: "ลำดับ",
sortable: false,
2023-07-28 08:34:52 +07:00
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",
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
},
]);
//save file
const SaveData = async () => {
2023-09-05 11:23:43 +07:00
myForm.value.validate().then((result: boolean) => {
if (result) {
const formData = new FormData();
formData.append("File", files.value);
showLoader();
2023-09-05 11:23:43 +07:00
http
.put(config.API.receiveFile(personalId.value), formData)
.then(() => {
success($q, "บันทึกข้อมูลสำเร็จ");
})
.catch((e) => {
messageError($q, e);
})
.finally(async () => {
await clickCloseUpload();
hideLoader();
2023-09-05 11:23:43 +07:00
});
2023-09-05 11:23:43 +07:00
}})};
const fecthlistRecevice = async () => {
showLoader();
await http
.get(config.API.receiveData())
.then((res: any) => {
const response = res.data.result;
listRecevice.value = 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) &&
e.dateOfBirth.toString() === "0001-01-01T00:00:00" ? "-" : 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) : "-",
});
});
rows.value = list;
filters.value = list;
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
};
// รีเซ็ตค่าในฟิลเตอร์
const resetFilter = () => {
filterKeyword.value = "";
filterKeyword2.value = "";
filterRef.value.focus();
};
// ไปหน้าเพิ่มข้อมูล
const add = () => {
router.push(`/receive/add`);
};
// ปิดโมเดล
const clickClose = () => {
modal.value = false;
filterKeyword2.value = "";
};
// ปิดโมเดลอัปเดตไฟล์
const clickCloseUpload = () => {
modalupload.value = false;
2023-09-05 11:23:43 +07:00
files.value = null
};
// ปิดโมเดลโครงสร้าง
const openModalTree = (id: string) => {
personalId.value = id;
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}`,
});
};
onMounted(() => {
fecthlistRecevice();
});
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 size="14px" flat round color="add" icon="mdi-account-arrow-right" @click="popup()" >
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">
{{ 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>
2023-09-05 11:23:43 +07:00
<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 size="xs" name="attach_file"
:color=" props.row.status == 'REPORT' || props.row.status == 'DONE' ? 'grey' : 'blue' " />
</q-item-section>
2023-09-05 11:23:43 +07:00
<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>
2023-09-05 11:23:43 +07:00
<q-icon
:color="
props.row.status == 'REPORT' ||
props.row.status == 'DONE' ? 'grey' : 'red' "
2023-09-05 11:23:43 +07:00
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>
<Dialogbody
v-model:Modal="modal"
:clickClose="clickClose"
:rows2="rows2"
v-model:filterKeyword2="filterKeyword2"
:fecthlistRecevice="fecthlistRecevice"
:nextPage="nextPage"
/>
<q-dialog v-model="modalupload">
<q-card style="width: 600px">
2023-09-05 11:23:43 +07:00
<DialogHeader title="อัปโหลดเอกสาร" :close="clickCloseUpload" />
<q-separator />
<q-card-section class="q-py-sm">
<div class="col-12 row items-center q-col-gutter-sm">
<div class="col-12">
<q-file ref="myForm" outlined dense v-model="files" label="อัปโหลดเอกสาร" lazy-rules
:rules="[(val) => val || 'กรุณาเลือกไฟล์หนังสือถึงหน่วยงานที่รับโอน']" hide-bottom-space >
<template v-slot:prepend>
<q-icon name="attach_file" />
</template>
</q-file>
</div>
</div>
</q-card-section>
2023-09-05 11:23:43 +07:00
<q-separator />
<div class="row q-px-sm q-py-xs">
<q-space />
<q-btn flat round color="public" @click="SaveData()" icon="mdi-content-save-outline" >
<q-tooltip>นท</q-tooltip>
</q-btn>
2023-09-05 11:23:43 +07:00
</div>
</q-card>
</q-dialog>
2023-09-05 11:23:43 +07:00
<DialogOrgTree
v-model:modal="modalTree"
:close="closeModalTree"
:personal="personal"
:personalId="personalId"
/>
2023-07-28 08:34:52 +07:00
</template>
<style scoped lang="scss"></style>