375 lines
9.8 KiB
Vue
375 lines
9.8 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted } from "vue";
|
|
import { useQuasar } from "quasar";
|
|
import { useRouter } from "vue-router";
|
|
|
|
import http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
|
|
/** importType*/
|
|
import type { QTableProps } from "quasar";
|
|
import type { listMain } from "@/modules/05_placement/interface/response/OhterMain";
|
|
import type { OpType } from "@/modules/05_placement/interface/response/Main";
|
|
|
|
/** importcomopnents*/
|
|
import Dialogbody from "@/modules/05_placement/components/Other/Dialogbody.vue";
|
|
|
|
/** importStore*/
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
|
|
/** use*/
|
|
const $q = useQuasar();
|
|
const router = useRouter();
|
|
const storeFn = useTransferDataStore();
|
|
const mixin = useCounterMixin();
|
|
const { statusText } = storeFn;
|
|
const {
|
|
showLoader,
|
|
hideLoader,
|
|
success,
|
|
messageError,
|
|
date2Thai,
|
|
dialogRemove,
|
|
findOrgName,
|
|
} = mixin;
|
|
|
|
const modal = ref<boolean>(false);
|
|
const type = ref<string>("");
|
|
const optionsType = ref<OpType[]>([]);
|
|
const rows = ref<listMain[]>([]);
|
|
const rows2 = ref<listMain[]>([]);
|
|
|
|
const filterKeyword = ref<string>("");
|
|
const filterKeyword2 = ref<string>("");
|
|
const filterRef = ref<any>(null);
|
|
|
|
const visibleColumns = ref<string[]>([
|
|
"no",
|
|
"fullname",
|
|
"position",
|
|
"positionLevel",
|
|
"affiliation",
|
|
"createdAt",
|
|
"status",
|
|
]);
|
|
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",
|
|
format(val, row) {
|
|
return `${row.prefix}${row.firstName} ${row.lastName}`;
|
|
},
|
|
},
|
|
{
|
|
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: "affiliation",
|
|
align: "left",
|
|
label: "สังกัด",
|
|
sortable: true,
|
|
field: "affiliation",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return findOrgName(row);
|
|
},
|
|
},
|
|
{
|
|
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),
|
|
},
|
|
]);
|
|
|
|
//----(ดึงข้อมูลจาก API)------//
|
|
const fecthlistOthet = async () => {
|
|
showLoader();
|
|
await http
|
|
.get(config.API.otherMain())
|
|
.then((res) => {
|
|
let response = res.data.result;
|
|
rows.value = response;
|
|
rows2.value = rows.value.filter(
|
|
(e: listMain) =>
|
|
e.status !== "REPORT" &&
|
|
e.status !== "DONE" &&
|
|
e.organizationPositionOld &&
|
|
e.positionTypeOld &&
|
|
e.positionLevelOld &&
|
|
e.positionNumberOld &&
|
|
e.amountOld !== null &&
|
|
e.positionDate &&
|
|
e.leaveDate !== null
|
|
);
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
};
|
|
//----(ดึงข้อมูลประเภทคำสั่ง)------//
|
|
const fecthTypeOption = async () => {
|
|
showLoader();
|
|
type.value = "";
|
|
await http
|
|
.get(config.API.typeOrder())
|
|
.then((res) => {
|
|
optionsType.value = res.data.result.filter(
|
|
(e: OpType) =>
|
|
e.commandCode === "C-PM-08" || e.commandCode === "C-PM-09"
|
|
);
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
};
|
|
|
|
//----(ลบข้อมูลจากไอดี)------//
|
|
const deleteOther = async (id: string) => {
|
|
showLoader();
|
|
await http
|
|
.delete(config.API.otherByid(id))
|
|
.then(() => {
|
|
success($q, "ลบข้อมูลสำเร็จ");
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
fecthlistOthet();
|
|
});
|
|
};
|
|
|
|
//----(รีเซ็ตข้อมูลในช่อง input)------//
|
|
const resetFilter = () => {
|
|
filterKeyword.value = "";
|
|
filterKeyword2.value = "";
|
|
filterRef.value.focus();
|
|
};
|
|
|
|
//----(เปิด Dialog)------//
|
|
const popup = () => {
|
|
modal.value = true;
|
|
filterKeyword2.value = "";
|
|
fecthTypeOption();
|
|
type.value = "";
|
|
};
|
|
|
|
//----(ปิด modal)------//
|
|
const clickClose = () => {
|
|
modal.value = false;
|
|
};
|
|
|
|
//----(เปิด Dialog ลบข้อมูล)------//
|
|
const clickDelete = (id: string) => {
|
|
dialogRemove($q, () => deleteOther(id));
|
|
};
|
|
|
|
//----(เปิดหน้าถัดไป)------//
|
|
const nextPage = (id: string) => {
|
|
router.push({
|
|
path: `/other/detail/${id}`,
|
|
});
|
|
};
|
|
|
|
const pagination = ref({
|
|
sortBy: "createdAt",
|
|
descending: true,
|
|
page: 1,
|
|
rowsPerPage: 10,
|
|
});
|
|
|
|
onMounted(() => {
|
|
fecthlistOthet();
|
|
});
|
|
</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="popup()"
|
|
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"
|
|
v-model:pagination="pagination"
|
|
>
|
|
<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="nextPage(props.row.id)"
|
|
>
|
|
<div v-if="col.name === 'no'">
|
|
{{ props.rowIndex + 1 }}
|
|
</div>
|
|
|
|
<div
|
|
v-else
|
|
:class="col.name === 'affiliation' ? 'table_ellipsis' : ''"
|
|
>
|
|
{{ col.value ? col.value : "-" }}
|
|
</div>
|
|
</q-td>
|
|
|
|
<q-td auto-width>
|
|
<q-btn
|
|
:color="
|
|
props.row.status == 'REPORT' || props.row.status == 'DONE'
|
|
? 'grey'
|
|
: 'red-7'
|
|
"
|
|
:disable="
|
|
props.row.status == 'REPORT' || props.row.status == 'DONE'
|
|
"
|
|
flat
|
|
round
|
|
class="text-red-14"
|
|
icon="mdi-delete"
|
|
dense
|
|
@click.stop="clickDelete(props.row.personalId)"
|
|
><q-tooltip>ลบข้อมูล</q-tooltip></q-btn
|
|
>
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</d-table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</q-card>
|
|
<Dialogbody
|
|
v-model:Modal="modal"
|
|
:clickClose="clickClose"
|
|
:optionsType="optionsType"
|
|
:rows2="rows2"
|
|
v-model:filterKeyword2="filterKeyword2"
|
|
v-model:type="type"
|
|
:fecthlistOthet="fecthlistOthet"
|
|
/>
|
|
</template>
|
|
<style scoped lang="scss"></style>
|