433 lines
12 KiB
Vue
433 lines
12 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted } from "vue";
|
|
import { useQuasar } from "quasar";
|
|
import { useRouter } from "vue-router";
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
|
import type { QTableProps } from "quasar";
|
|
import type { officerType } from "@/modules/05_placement/interface/response/officer";
|
|
|
|
import Dialogbody from "@/modules/05_placement/components/helpgovernment/Dialogbody.vue";
|
|
import http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
|
|
const transferStore = useTransferDataStore();
|
|
const { statusText } = transferStore;
|
|
|
|
const $q = useQuasar();
|
|
const filterKeyword = ref<string>("");
|
|
const filterKeyword2 = ref<string>("");
|
|
const filterRef = ref<any>(null);
|
|
const router = useRouter();
|
|
|
|
const rows = ref<officerType[]>([]);
|
|
const rows2 = ref<officerType[]>([]);
|
|
const modal = ref<boolean>(false);
|
|
const mixin = useCounterMixin();
|
|
const {
|
|
date2Thai,
|
|
messageError,
|
|
showLoader,
|
|
hideLoader,
|
|
success,
|
|
dialogRemove,
|
|
} = mixin;
|
|
|
|
//ค้นหา คอลัมน์ คอลัมน์ที่แสดง
|
|
const visibleColumns = ref<string[]>([
|
|
"no",
|
|
"fullname",
|
|
"posNo",
|
|
"position",
|
|
"positionLevel",
|
|
"organizationPositionOld",
|
|
"organization",
|
|
"dateStart",
|
|
"dateEnd",
|
|
"createdAt",
|
|
"statusText",
|
|
]);
|
|
|
|
//หัวตาราง
|
|
const columns = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "no",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: false,
|
|
field: "no",
|
|
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: "posNo",
|
|
align: "left",
|
|
label: "ตำแหน่งเลขที่",
|
|
sortable: true,
|
|
field: "posNo",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "position",
|
|
align: "left",
|
|
label: "ตำแหน่งในสายงาน",
|
|
sortable: true,
|
|
field: "position",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "positionLevel",
|
|
align: "left",
|
|
label: "ระดับ",
|
|
sortable: true,
|
|
field: "positionLevel",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "organizationPositionOld",
|
|
align: "left",
|
|
label: "สังกัด",
|
|
sortable: true,
|
|
field: "organizationPositionOld",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "organization",
|
|
align: "left",
|
|
label: "หน่วยงานที่ให้ช่วยราชการ",
|
|
sortable: true,
|
|
field: "organization",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "dateStart",
|
|
align: "left",
|
|
label: "วันเริ่มช่วยราชการ",
|
|
sortable: true,
|
|
field: "dateStart",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "dateEnd",
|
|
align: "left",
|
|
label: "วันสิ้นสุดการช่วยราชการ",
|
|
sortable: true,
|
|
field: "dateEnd",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "createdAt",
|
|
align: "left",
|
|
label: "วันที่ดำเนินการ",
|
|
sortable: true,
|
|
field: "createdAt",
|
|
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",
|
|
},
|
|
]);
|
|
|
|
//รีเซ็ตข้อมูลในช่องฟิลเตอร์
|
|
const resetFilter = () => {
|
|
filterKeyword.value = "";
|
|
filterKeyword2.value = "";
|
|
filterRef.value.focus();
|
|
};
|
|
|
|
const openDetail = (id: string) => {
|
|
router.push(`/help-government/detail/${id}`);
|
|
};
|
|
const openModal = () => (modal.value = true);
|
|
const closeModal = () => {
|
|
modal.value = false;
|
|
filterKeyword2.value = "";
|
|
};
|
|
const openModalOrder = () => {
|
|
openModal();
|
|
const row = rows.value.filter(
|
|
(item: officerType) =>
|
|
(item.status == "WAITTING" ||
|
|
item.status == "PENDING" ||
|
|
item.status == "APPROVE") &&
|
|
item.organizationPositionOld &&
|
|
item.organization &&
|
|
item.dateStart &&
|
|
item.dateEnd
|
|
);
|
|
rows2.value = row;
|
|
};
|
|
const getData = async () => {
|
|
showLoader();
|
|
await http
|
|
.get(config.API.officerMain())
|
|
.then((res: any) => {
|
|
const data = res.data.result;
|
|
rows.value = data.map((item: officerType) => ({
|
|
id: item.id,
|
|
fullname: `${item.prefix}${item.firstName} ${item.lastName}`,
|
|
position: item.position,
|
|
posNo: item.posNo,
|
|
positionLevel: item.positionLevel,
|
|
createdAt: date2Thai(item.createdAt),
|
|
organization: item.organization,
|
|
reason: item.reason,
|
|
status: item.status,
|
|
statusText: statusText(item.status),
|
|
date: item.date,
|
|
salary: item.salary,
|
|
positionTypeOld: item.positionTypeOld,
|
|
positionLevelOld: item.positionLevelOld,
|
|
positionNumberOld: item.positionNumberOld,
|
|
organizationPositionOld: item.organizationPositionOld,
|
|
isActive: item.isActive,
|
|
dateEnd: item.dateEnd == null ? "-" : date2Thai(new Date(item.dateEnd)),
|
|
dateStart:
|
|
item.dateStart == null ? "-" : date2Thai(new Date(item.dateStart)),
|
|
}));
|
|
})
|
|
.catch((e) => {})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
};
|
|
|
|
const deleteData = async (id: string) => {
|
|
await http
|
|
.delete(config.API.officerMainDelete(id))
|
|
.then((res) => {
|
|
success($q, "ลบข้อมูลสำเร็จ");
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(async () => {
|
|
await getData();
|
|
});
|
|
};
|
|
|
|
const clickDelete = async (name: string, id: string) => {
|
|
dialogRemove($q, async () => await deleteData(id));
|
|
};
|
|
onMounted(async () => {
|
|
await getData();
|
|
});
|
|
</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
|
|
@click="openModalOrder"
|
|
size="14px"
|
|
flat
|
|
round
|
|
color="add"
|
|
icon="mdi-account-arrow-right"
|
|
>
|
|
<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="id"
|
|
: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="openDetail(props.row.id)">
|
|
{{ props.rowIndex + 1 }}
|
|
</q-td>
|
|
<q-td
|
|
key="fullname"
|
|
:props="props"
|
|
@click="openDetail(props.row.id)"
|
|
>
|
|
{{ props.row.fullname }}
|
|
</q-td>
|
|
<q-td
|
|
key="posNo"
|
|
:props="props"
|
|
@click="openDetail(props.row.id)"
|
|
>
|
|
{{ props.row.posNo }}
|
|
</q-td>
|
|
<q-td
|
|
key="position"
|
|
:props="props"
|
|
@click="openDetail(props.row.id)"
|
|
>
|
|
{{ props.row.position }}
|
|
</q-td>
|
|
<q-td
|
|
key="positionLevel"
|
|
:props="props"
|
|
@click="openDetail(props.row.id)"
|
|
>
|
|
{{ props.row.positionLevel }}
|
|
</q-td>
|
|
<q-td
|
|
key="organizationPositionOld"
|
|
:props="props"
|
|
@click="openDetail(props.row.id)"
|
|
>
|
|
<div class="table_ellipsis">
|
|
{{ props.row.organizationPositionOld }}
|
|
</div>
|
|
</q-td>
|
|
<q-td
|
|
key="organization"
|
|
:props="props"
|
|
@click="openDetail(props.row.id)"
|
|
>
|
|
<div class="table_ellipsis">
|
|
{{ props.row.organization }}
|
|
</div>
|
|
</q-td>
|
|
<q-td
|
|
key="dateStart"
|
|
:props="props"
|
|
@click="openDetail(props.row.id)"
|
|
>
|
|
{{ props.row.dateStart }}
|
|
</q-td>
|
|
<q-td
|
|
key="dateEnd"
|
|
:props="props"
|
|
@click="openDetail(props.row.id)"
|
|
>
|
|
{{ props.row.dateEnd }}
|
|
</q-td>
|
|
<q-td
|
|
key="createdAt"
|
|
:props="props"
|
|
@click="openDetail(props.row.id)"
|
|
>
|
|
{{ props.row.createdAt }}
|
|
</q-td>
|
|
<q-td
|
|
key="statusText"
|
|
:props="props"
|
|
@click="openDetail(props.row.id)"
|
|
>
|
|
{{ props.row.statusText }}
|
|
</q-td>
|
|
<q-td auto-width>
|
|
<q-btn
|
|
icon="delete"
|
|
size="14px"
|
|
flat
|
|
round
|
|
dense
|
|
:color="
|
|
props.row.status == 'REPORT' || props.row.status == 'DONE'
|
|
? 'grey'
|
|
: 'red-7'
|
|
"
|
|
@click="clickDelete(props.row.fullname, props.row.id)"
|
|
:disable="
|
|
props.row.status == 'REPORT' || props.row.status == 'DONE'
|
|
"
|
|
>
|
|
<q-tooltip>ลบข้อมูล</q-tooltip>
|
|
</q-btn>
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</d-table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</q-card>
|
|
|
|
<Dialogbody
|
|
v-model:Modal="modal"
|
|
:closeModal="closeModal"
|
|
:rows2="rows2"
|
|
v-model:filterKeyword2="filterKeyword2"
|
|
:getData="getData"
|
|
/>
|
|
</template>
|
|
<style scoped lang="scss"></style>
|