366 lines
9.8 KiB
Vue
366 lines
9.8 KiB
Vue
<script setup lang="ts">
|
|
import { ref, computed, 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 http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
import Dialogbody from "@/modules/05_placement/components/Repatriate/Dialogbody.vue";
|
|
|
|
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 transferStore = useTransferDataStore();
|
|
const { statusText } = transferStore;
|
|
const {
|
|
date2Thai,
|
|
messageError,
|
|
showLoader,
|
|
hideLoader,
|
|
success,
|
|
dialogRemove,
|
|
findOrgName,
|
|
findPosMasterNo,
|
|
} = mixin;
|
|
|
|
// หัวตาราง
|
|
const columns = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "no",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: false,
|
|
field: "no",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "name",
|
|
align: "left",
|
|
label: "ชื่อ-นามสกุล",
|
|
sortable: true,
|
|
field: "naem",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return `${row.prefix}${row.firstName} ${row.lastName}`;
|
|
},
|
|
},
|
|
{
|
|
name: "posNo",
|
|
align: "left",
|
|
label: "เลขที่ตำแหน่ง",
|
|
sortable: true,
|
|
field: "posNo",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return findPosMasterNo(row);
|
|
},
|
|
},
|
|
{
|
|
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",
|
|
format(val, row) {
|
|
let name = "";
|
|
if (row.posTypeName && row.posLevelName) {
|
|
name = `${row.posTypeName} (${row.posLevelName})`;
|
|
} else if (row.posTypeName) {
|
|
name = `${row.posTypeName}`;
|
|
} else if (row.posLevelName) {
|
|
name = `(${row.posLevelName})`;
|
|
} else name = "-";
|
|
return name;
|
|
},
|
|
},
|
|
{
|
|
name: "organizationPositionOld",
|
|
align: "left",
|
|
label: "สังกัด",
|
|
sortable: true,
|
|
field: "organizationPositionOld",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return findOrgName(row);
|
|
},
|
|
},
|
|
{
|
|
name: "organization",
|
|
align: "left",
|
|
label: "หน่วยงานที่ให้ช่วยราชการ",
|
|
sortable: true,
|
|
field: "organization",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "createdAt",
|
|
align: "left",
|
|
label: "วันที่ดำเนินการ",
|
|
sortable: true,
|
|
field: "createdAt",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val) => date2Thai(val),
|
|
},
|
|
{
|
|
name: "status",
|
|
align: "left",
|
|
label: "สถานะ",
|
|
sortable: true,
|
|
field: "status",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val) => statusText(val),
|
|
},
|
|
]);
|
|
const visibleColumns = ref<string[]>([
|
|
"no",
|
|
"name",
|
|
"posNo",
|
|
"position",
|
|
"positionLevel",
|
|
"organizationPositionOld",
|
|
"organization",
|
|
"createdAt",
|
|
"status",
|
|
]);
|
|
|
|
// รีเซ้ตค่าในช่อง ฟิลเตอร์
|
|
const resetFilter = () => {
|
|
filterKeyword.value = "";
|
|
filterKeyword2.value = "";
|
|
filterRef.value.focus();
|
|
};
|
|
|
|
//เปิดรายละเอียด
|
|
const openDetail = (id: string) => {
|
|
router.push(`/repatriate/detail/${id}`);
|
|
};
|
|
// เปิด modal
|
|
const openModal = () => (modal.value = true);
|
|
// ปิด modal
|
|
const closeModal = () => {
|
|
modal.value = false;
|
|
filterKeyword2.value = "";
|
|
};
|
|
|
|
// เปิด modal และกรอก status
|
|
const openModalOrder = () => {
|
|
openModal();
|
|
const row = rows.value.filter(
|
|
(item: officerType) =>
|
|
(item.status == "WAITTING" ||
|
|
item.status == "PENDING" ||
|
|
item.status == "APPROVE") &&
|
|
item.organizationPositionOld &&
|
|
item.positionTypeOld &&
|
|
item.positionLevelOld &&
|
|
item.positionNumberOld &&
|
|
item.salary !== null &&
|
|
item.organization &&
|
|
item.date &&
|
|
item.dateRepatriation
|
|
);
|
|
|
|
rows2.value = row;
|
|
};
|
|
|
|
// ดึงข้อมูลจาก API
|
|
const getData = async () => {
|
|
showLoader();
|
|
await http
|
|
.get(config.API.repatriationMain())
|
|
.then((res: any) => {
|
|
const data = res.data.result;
|
|
rows.value = data;
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
};
|
|
// เปิดpop up ยืนยันลบข้อมูล
|
|
const clickDelete = async (name: string, id: string) => {
|
|
dialogRemove($q, async () => await deleteData(id), `ลบข้อมูลของ ${name}`);
|
|
};
|
|
|
|
// ลบข้อมูล
|
|
const deleteData = async (id: string) => {
|
|
await http
|
|
.delete(config.API.repatriationMainDelete(id))
|
|
.then((res) => {
|
|
success($q, "ลบข้อมูลสำเร็จ");
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(async () => {
|
|
await getData();
|
|
});
|
|
};
|
|
|
|
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
|
|
flat
|
|
round
|
|
size="14px"
|
|
color="add"
|
|
icon="mdi-account-arrow-right"
|
|
@click="openModalOrder"
|
|
>
|
|
<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
|
|
class="col-xs-12 col-sm-3 col-md-2 q-ml-sm"
|
|
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"
|
|
/>
|
|
</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
|
|
v-for="col in props.cols"
|
|
:key="col.id"
|
|
@click.stop.prevent="openDetail(props.row.id)"
|
|
>
|
|
<div v-if="col.name === 'no'">
|
|
{{ props.rowIndex + 1 }}
|
|
</div>
|
|
|
|
<div
|
|
v-else
|
|
:class="
|
|
col.name === 'organizationPositionOld' ||
|
|
col.name === 'organization'
|
|
? 'table_ellipsis'
|
|
: ''
|
|
"
|
|
>
|
|
{{ col.value ? col.value : "-" }}
|
|
</div>
|
|
</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>
|