632 lines
20 KiB
Vue
632 lines
20 KiB
Vue
<script setup lang="ts">
|
|
import { ref, computed, onMounted } from "vue";
|
|
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";
|
|
|
|
import { useRouter } from "vue-router";
|
|
|
|
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<ResponseData[]>([]);
|
|
const personalId = ref<string>("");
|
|
const filterKeyword = ref<string>("");
|
|
const filterKeyword2 = ref<string>("");
|
|
const filterRef = ref<any>(null);
|
|
const files = ref<any>();
|
|
const listRecevice = ref<ResponseData[]>([]);
|
|
const filters = ref<ResponseRow[]>([]);
|
|
const rows = ref<ResponseRow[]>([]);
|
|
const mixin = useCounterMixin(); //เรียกฟังก์ชันกลาง
|
|
const transferStore = useTransferDataStore();
|
|
const { statusText } = transferStore;
|
|
const {
|
|
showLoader,
|
|
hideLoader,
|
|
success,
|
|
messageError,
|
|
date2Thai,
|
|
dialogRemove,
|
|
} = mixin;
|
|
|
|
const popup = () => {
|
|
const row = filters.value.filter(
|
|
(r: ResponseRow) =>
|
|
(r.status == "WAITTING" ||
|
|
r.status == "PENDING" ||
|
|
r.status == "APPROVE") &&
|
|
r.positionNumber != null &&
|
|
r.educationOld &&
|
|
r.organizationPositionOld &&
|
|
r.positionTypeOld &&
|
|
r.positionLevelOld &&
|
|
r.positionNumberOld &&
|
|
r.amountOld !== null
|
|
);
|
|
|
|
rows2.value = row;
|
|
modal.value = true;
|
|
};
|
|
//คอลัม
|
|
const visibleColumns = ref<string[]>([
|
|
"no",
|
|
"citizenId",
|
|
"fullname",
|
|
"organizationName",
|
|
"birthday",
|
|
"dateText",
|
|
"statusText",
|
|
]);
|
|
// หัวตาราง
|
|
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: "fullname",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "fullname",
|
|
align: "left",
|
|
label: "ชื่อ-นามสกุล",
|
|
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" }),
|
|
},
|
|
{
|
|
name: "organizationName",
|
|
align: "left",
|
|
label: "หน่วยงานที่รับโอน",
|
|
sortable: true,
|
|
field: "organizationName",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "birthday",
|
|
align: "left",
|
|
label: "วัน/เดือน/ปี เกิด",
|
|
sortable: true,
|
|
field: "birthday",
|
|
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" }),
|
|
},
|
|
]);
|
|
|
|
//save file
|
|
const SaveData = async () => {
|
|
myForm.value.validate().then((result: boolean) => {
|
|
if (result) {
|
|
const formData = new FormData();
|
|
formData.append("File", files.value);
|
|
showLoader();
|
|
http
|
|
.put(config.API.receiveFile(personalId.value), formData)
|
|
.then(() => {
|
|
success($q, "บันทึกข้อมูลสำเร็จ");
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(async () => {
|
|
await clickCloseUpload();
|
|
hideLoader();
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
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 ?? "-",
|
|
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) : "-",
|
|
educationOld: e.educationOld ?? "",
|
|
organizationPositionOld: e.organizationPositionOld ?? "",
|
|
positionTypeOld: e.positionTypeOld,
|
|
positionLevelOld: e.positionLevelOld,
|
|
positionNumberOld: e.positionNumberOld,
|
|
amountOld: e.amountOld,
|
|
});
|
|
});
|
|
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;
|
|
files.value = null;
|
|
};
|
|
// ปิดโมเดลโครงสร้าง
|
|
const openModalTree = (id: string) => {
|
|
personalId.value = id;
|
|
personal.value = listRecevice.value.filter((e: ResponseData) => e.id === id);
|
|
modalTree.value = true;
|
|
};
|
|
// เปิดโมเดลไฟล์
|
|
const openUpload = (id: string) => {
|
|
personalId.value = id;
|
|
modalupload.value = true;
|
|
};
|
|
// ยินยันลบ
|
|
const openDelete = (id: string) => {
|
|
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();
|
|
});
|
|
};
|
|
|
|
// เปิดโมเดล โครงสร้าง
|
|
const closeModalTree = async () => {
|
|
await fecthlistRecevice();
|
|
modalTree.value = false;
|
|
};
|
|
|
|
// ไปหน้ารายละเอียด
|
|
const nextPage = (id: string) => {
|
|
router.push({
|
|
path: `/receive/${id}`,
|
|
});
|
|
};
|
|
|
|
onMounted(() => {
|
|
fecthlistRecevice();
|
|
});
|
|
</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()"
|
|
>
|
|
<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="fullname"
|
|
:visible-columns="visibleColumns"
|
|
>
|
|
<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
|
|
key="no"
|
|
:props="props"
|
|
@click="nextPage(props.row.personalId)"
|
|
>
|
|
{{ props.rowIndex + 1 }}
|
|
</q-td>
|
|
<q-td
|
|
key="citizenId"
|
|
:props="props"
|
|
@click="nextPage(props.row.personalId)"
|
|
>
|
|
{{ props.row.citizenId }}
|
|
</q-td>
|
|
<q-td
|
|
key="fullname"
|
|
:props="props"
|
|
@click="nextPage(props.row.personalId)"
|
|
>
|
|
{{ props.row.fullname }}
|
|
</q-td>
|
|
<q-td
|
|
key="organizationName"
|
|
:props="props"
|
|
@click="nextPage(props.row.personalId)"
|
|
>
|
|
<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>
|
|
</q-td>
|
|
<q-td
|
|
key="birthday"
|
|
:props="props"
|
|
@click="nextPage(props.row.personalId)"
|
|
>
|
|
{{ props.row.birthday }}
|
|
</q-td>
|
|
<q-td
|
|
key="dateText"
|
|
:props="props"
|
|
@click="nextPage(props.row.personalId)"
|
|
>
|
|
{{ props.row.dateText }}
|
|
</q-td>
|
|
<q-td
|
|
key="statusText"
|
|
:props="props"
|
|
@click="nextPage(props.row.personalId)"
|
|
>
|
|
{{ props.row.statusText }}
|
|
</q-td>
|
|
<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"
|
|
>
|
|
<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"
|
|
/>
|
|
</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
|
|
size="xs"
|
|
name="attach_file"
|
|
:color="
|
|
props.row.status == 'REPORT' ||
|
|
props.row.status == 'DONE'
|
|
? 'grey'
|
|
: 'blue'
|
|
"
|
|
/>
|
|
</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>
|
|
</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">
|
|
<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>
|
|
<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>
|
|
</div>
|
|
</q-card>
|
|
</q-dialog>
|
|
|
|
<DialogOrgTree
|
|
v-model:modal="modalTree"
|
|
:close="closeModalTree"
|
|
:personal="personal"
|
|
:personalId="personalId"
|
|
/>
|
|
</template>
|
|
<style scoped lang="scss"></style>
|