668 lines
19 KiB
Vue
668 lines
19 KiB
Vue
<script setup lang="ts">
|
|
import { ref, computed, onMounted } from "vue";
|
|
import type { QTableProps } from "quasar";
|
|
import { useQuasar } from "quasar";
|
|
import { useRouter } from "vue-router";
|
|
import DialogHeader from "@/modules/05_placement/components/Receive/DialogHeader.vue";
|
|
import DialogOrgTree from "@/modules/05_placement/components/Other/OtherModal.vue";
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
const mixin = useCounterMixin(); //เรียกฟังก์ชันกลาง
|
|
const {
|
|
showLoader,
|
|
hideLoader,
|
|
dateText,
|
|
success,
|
|
messageError,
|
|
date2Thai,
|
|
dialogRemove,
|
|
dialogConfirm,
|
|
} = mixin;
|
|
|
|
const selected = ref([]);
|
|
const checkSelected = computed(() => {
|
|
if (selected.value.length === 0 || type.value === "") {
|
|
return true;
|
|
}
|
|
});
|
|
|
|
// const add = () => {
|
|
// router.push(`/receive/add`);
|
|
// };
|
|
|
|
const clickClose = () => {
|
|
modal.value = false;
|
|
};
|
|
|
|
const $q = useQuasar();
|
|
const modal = ref<boolean>(false);
|
|
const popup = () => {
|
|
modal.value = true;
|
|
fecthTypeOption();
|
|
type.value = "";
|
|
selected.value = [];
|
|
};
|
|
const router = useRouter();
|
|
|
|
const modalTree = ref<boolean>(false);
|
|
const personal = ref<any[]>([]);
|
|
const personalId = ref<string>("");
|
|
const visibleColumns = ref<string[]>([
|
|
"no",
|
|
"fullname",
|
|
"position",
|
|
"positionLevel",
|
|
"organizationPositionOld",
|
|
"createdAt",
|
|
"statustext",
|
|
]);
|
|
|
|
const visibleColumns2 = ref<string[]>([
|
|
"no",
|
|
"fullname",
|
|
"position",
|
|
"positionLevel",
|
|
"organizationPositionOld",
|
|
|
|
"statustext",
|
|
]); //ค้นหา คอลัมน์ คอลัมน์ที่แสดง
|
|
const filterKeyword = ref<string>("");
|
|
const filterKeyword2 = ref<string>("");
|
|
const filterRef = ref<any>(null);
|
|
const resetFilter = () => {
|
|
filterKeyword.value = "";
|
|
filterKeyword2.value = "";
|
|
filterRef.value.focus();
|
|
};
|
|
|
|
const optionsType = ref<any[]>([]);
|
|
const type = ref<string>("");
|
|
onMounted(() => {
|
|
fecthlistOthet();
|
|
});
|
|
// const listRecevice = ref<any>([]);
|
|
const fecthlistOthet = async () => {
|
|
showLoader();
|
|
await http
|
|
.get(config.API.otherMain())
|
|
.then((res) => {
|
|
console.log(res);
|
|
let response = res.data.result;
|
|
// listRecevice.value = response;
|
|
console.log(response);
|
|
rows.value = response.map((r: any) => ({
|
|
createdAt: date2Thai(r.createdAt),
|
|
date: new Date(),
|
|
firstName: r.firstname ?? "",
|
|
personalId: r.id ?? "",
|
|
isActive: r.isActive ? r.isActive : false,
|
|
lastName: r.lastname ?? "",
|
|
organization: r.organization ?? "",
|
|
organizationPositionOld: r.organizationPositionOld ?? "",
|
|
posNo: r.posNo ?? "",
|
|
position: r.position ?? "",
|
|
positionLevel: r.positionLevel ?? "",
|
|
positionLevelOld: r.positionLevelOld ?? "",
|
|
positionNumberOld: r.positionNumberOld ?? "",
|
|
positionTypeOld: r.positionTypeOld ?? "",
|
|
prefix: r.prefix ?? "",
|
|
reason: r.reason ?? "",
|
|
salary: r.salary ? r.salary : 0,
|
|
status: r.status ?? "",
|
|
statustext: status(r.status ?? ""),
|
|
fullname: `${r.prefix ?? ""} ${r.firstname ?? ""} ${r.lastname ?? ""}`,
|
|
}));
|
|
console.log(rows.value);
|
|
rows2.value = rows.value.filter((e: any) => e.orgName !== null);
|
|
})
|
|
.catch((e) => {
|
|
messageError($q);
|
|
console.log(e);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
};
|
|
const fecthTypeOption = async () => {
|
|
showLoader();
|
|
type.value = "";
|
|
await http
|
|
.get(config.API.typeOrder())
|
|
.then((res) => {
|
|
optionsType.value = res.data.result.filter(
|
|
(e: any) => e.commandCode === "C-PM-08" || e.commandCode === "C-PM-09"
|
|
);
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
};
|
|
|
|
const rows = ref<any>([
|
|
// {
|
|
// personalId: "08db721d-add6-47b0-8a13-5f45d106e8d1",
|
|
// citizenId: "1234444332222",
|
|
// fullname: "นางสาวอย พชช",
|
|
// organizationName: "นักจัดการงานทั่วไป",
|
|
// orgName: "กลุ่มงานช่วยนักบริหาร",
|
|
// organizationShortName: "สกจ.",
|
|
// positionNumber: "กก. 1",
|
|
// positionPath: "นักจัดการงานทั่วไป",
|
|
// birthday: dateText(new Date("1989-09-03")),
|
|
// },
|
|
]);
|
|
const rows2 = ref<any>([
|
|
// {
|
|
// personalId: "08db721d-add6-47b0-8a13-5f45d106e8d1",
|
|
// citizenId: "1234444332222",
|
|
// fullname: "นางสาวอย พชช",
|
|
// organizationName: "นักจัดการงานทั่วไป",
|
|
// orgName: "กลุ่มงานช่วยนักบริหาร",
|
|
// organizationShortName: "สกจ.",
|
|
// positionNumber: "กก. 1",
|
|
// positionPath: "นักจัดการงานทั่วไป",
|
|
// birthday: dateText(new Date("1989-09-03")),
|
|
// },
|
|
]);
|
|
const columns = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "no",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: true,
|
|
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: "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: "createdAt",
|
|
align: "left",
|
|
label: "วันที่ดำเนินการ",
|
|
sortable: true,
|
|
field: "createdAt",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "statustext",
|
|
align: "left",
|
|
label: "สถานะ",
|
|
sortable: true,
|
|
field: "statustext",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
]);
|
|
const columns2 = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "no",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: true,
|
|
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: "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: "statustext",
|
|
align: "left",
|
|
label: "สถานะ",
|
|
sortable: true,
|
|
field: "statustext",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
]);
|
|
|
|
// const openModalTree = (id: string) => {
|
|
// personalId.value = id;
|
|
// console.log(personalId.value);
|
|
|
|
// personal.value = listRecevice.value.filter((e: any) => e.id === id);
|
|
// modalTree.value = true;
|
|
// };
|
|
|
|
const clickDelete = (id: string) => {
|
|
dialogRemove($q, () => deleteOther(id));
|
|
};
|
|
const clickAddlist = () => {
|
|
dialogConfirm($q, () => addOther());
|
|
};
|
|
const deleteOther = async (id: string) => {
|
|
showLoader();
|
|
await http
|
|
.delete(config.API.otherByid(id))
|
|
.then(() => {
|
|
success($q, "ลบข้อมูลสำเร็จ");
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
fecthlistOthet();
|
|
});
|
|
};
|
|
const addOther = async () => {
|
|
let pId: string[] = [];
|
|
selected.value.forEach((e: any) => {
|
|
pId.push(e.personalId);
|
|
});
|
|
let data = {
|
|
id: pId,
|
|
};
|
|
console.log(data);
|
|
showLoader();
|
|
await http
|
|
.put(config.API.otherReport(type.value), data)
|
|
.then((res: any) => {
|
|
console.log(res);
|
|
success($q, "บันทึกสำเร็จ");
|
|
})
|
|
.catch((e: any) => {
|
|
console.log(e);
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
fecthlistOthet();
|
|
selected.value = [];
|
|
modal.value = false;
|
|
});
|
|
};
|
|
|
|
const closeModalTree = async () => {
|
|
await fecthlistOthet();
|
|
modalTree.value = false;
|
|
};
|
|
|
|
const nextPage = (row: any) => {
|
|
router.push({
|
|
path: `/other/detail/${row.personalId}`,
|
|
});
|
|
};
|
|
const status = (val: string) => {
|
|
switch (val) {
|
|
case "WAITTING":
|
|
return "รอดำเนินการ";
|
|
case "PENDING":
|
|
return "เลือกตำแหน่งแล้ว";
|
|
case "REPORT":
|
|
return "ส่งรายชื่อไปออกคำสั่ง";
|
|
case "DONE":
|
|
return "ออกคำสั่งเสร็จแล้ว";
|
|
default:
|
|
return "-";
|
|
}
|
|
};
|
|
const pagination = ref({
|
|
sortBy: "createdAt",
|
|
descending: true,
|
|
page: 1,
|
|
rowsPerPage: 10,
|
|
});
|
|
</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
|
|
@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="fullname"
|
|
: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"
|
|
@click="nextPage(props.row)"
|
|
>
|
|
<q-td key="no" :props="props">
|
|
{{ props.rowIndex + 1 }}
|
|
</q-td>
|
|
<q-td key="fullname" :props="props">
|
|
{{ props.row.fullname }}
|
|
</q-td>
|
|
<q-td key="position" :props="props">
|
|
{{ props.row.position }}
|
|
</q-td>
|
|
<q-td key="positionLevel" :props="props">
|
|
{{ props.row.positionLevel }}
|
|
</q-td>
|
|
<q-td key="organizationPositionOld" :props="props">
|
|
<div class="table_ellipsis">
|
|
{{ props.row.organizationPositionOld }}
|
|
<!-- <q-tooltip>
|
|
{{ props.row.organizationPositionOld }}
|
|
</q-tooltip> -->
|
|
</div>
|
|
</q-td>
|
|
<q-td key="organization" :props="props">
|
|
<div class="table_ellipsis">
|
|
{{ props.row.organization }}
|
|
<!-- <q-tooltip>
|
|
{{ props.row.organization }}
|
|
</q-tooltip> -->
|
|
</div>
|
|
</q-td>
|
|
<q-td key="createdAt" :props="props">
|
|
{{ props.row.createdAt }}
|
|
</q-td>
|
|
<q-td key="statustext" :props="props">
|
|
{{ props.row.statustext }}
|
|
</q-td>
|
|
|
|
<q-td auto-width>
|
|
<q-btn
|
|
v-if="
|
|
props.row.status !== 'DONE' &&
|
|
props.row.status !== 'REPORT'
|
|
"
|
|
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>
|
|
|
|
<q-dialog v-model="modal">
|
|
<q-card style="width: 1200px; max-width: 80vw">
|
|
<DialogHeader title="ประเภทคำสั่งอื่นๆ" :close="clickClose" />
|
|
<q-separator />
|
|
<q-card-section class="q-pt-none">
|
|
<div class="row justify-between">
|
|
<div class="col-5">
|
|
<q-toolbar style="padding: 0">
|
|
<q-select
|
|
outlined
|
|
dense
|
|
v-model="type"
|
|
:options="optionsType"
|
|
label="คำสั่งแต่งตั่ง - เลื่อน"
|
|
style="width: 400px; max-width: auto"
|
|
emit-value
|
|
map-options
|
|
option-label="name"
|
|
option-value="id"
|
|
/>
|
|
</q-toolbar>
|
|
</div>
|
|
<div class="col-5">
|
|
<q-toolbar style="padding: 0">
|
|
<q-input
|
|
borderless
|
|
outlined
|
|
dense
|
|
debounce="300"
|
|
v-model="filterKeyword2"
|
|
placeholder="ค้นหา"
|
|
style="width: 850px; max-width: auto"
|
|
>
|
|
<template v-slot:append>
|
|
<q-icon v-if="filterKeyword2 == ''" name="search" />
|
|
<q-icon
|
|
v-if="filterKeyword2 !== ''"
|
|
name="clear"
|
|
class="cursor-pointer"
|
|
@click="resetFilter"
|
|
/>
|
|
</template>
|
|
</q-input>
|
|
<q-select
|
|
v-model="visibleColumns2"
|
|
multiple
|
|
outlined
|
|
dense
|
|
options-dense
|
|
:display-value="$q.lang.table.columns"
|
|
emit-value
|
|
map-options
|
|
:options="columns2"
|
|
option-value="name"
|
|
options-cover
|
|
style="min-width: 150px"
|
|
class="gt-xs q-ml-sm"
|
|
/>
|
|
</q-toolbar>
|
|
</div>
|
|
</div>
|
|
|
|
<d-table
|
|
:columns="columns2"
|
|
:rows="rows2"
|
|
:filter="filterKeyword2"
|
|
row-key="personalId"
|
|
flat
|
|
:visible-columns="visibleColumns2"
|
|
selection="multiple"
|
|
v-model:selected="selected"
|
|
>
|
|
<template v-slot:header-selection="scope">
|
|
<q-checkbox
|
|
keep-color
|
|
color="primary"
|
|
dense
|
|
v-model="scope.selected"
|
|
/>
|
|
</template>
|
|
<!-- <template v-slot:body-selection="scope">
|
|
<q-checkbox
|
|
keep-color
|
|
color="primary"
|
|
dense
|
|
v-model="scope.selected"
|
|
/>
|
|
</template> -->
|
|
<template v-slot:body="props">
|
|
<q-tr :props="props" class="cursor-pointer">
|
|
<q-td>
|
|
<q-checkbox
|
|
keep-color
|
|
color="primary"
|
|
dense
|
|
v-model="props.selected"
|
|
/>
|
|
</q-td>
|
|
<q-td key="no" :props="props">
|
|
{{ props.rowIndex + 1 }}
|
|
</q-td>
|
|
<q-td key="fullname" :props="props">
|
|
{{ props.row.fullname }}
|
|
</q-td>
|
|
<q-td key="position" :props="props">
|
|
{{ props.row.position }}
|
|
</q-td>
|
|
<q-td key="positionLevel" :props="props">
|
|
{{ props.row.positionLevel }}
|
|
</q-td>
|
|
<q-td key="organizationPositionOld" :props="props">
|
|
<div class="table_ellipsis">
|
|
{{ props.row.organizationPositionOld }}
|
|
</div>
|
|
</q-td>
|
|
<q-td key="organization" :props="props">
|
|
<div class="table_ellipsis">
|
|
{{ props.row.organization }}
|
|
</div>
|
|
</q-td>
|
|
<q-td key="statustext" :props="props">
|
|
{{ props.row.statustext }}
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</d-table>
|
|
</q-card-section>
|
|
|
|
<q-card-actions align="right" class="bg-white text-teal">
|
|
<q-btn
|
|
label="ส่งไปออกคำสั่ง"
|
|
@click="clickAddlist"
|
|
:disable="checkSelected"
|
|
color="public"
|
|
/>
|
|
</q-card-actions>
|
|
</q-card>
|
|
</q-dialog>
|
|
|
|
<!-- <DialogOrgTree
|
|
v-model:modal="modalTree"
|
|
:close="closeModalTree"
|
|
:personal="personal"
|
|
:personalId="personalId"
|
|
/> -->
|
|
<!-- :personalId="personalId" -->
|
|
</template>
|
|
<style scoped lang="scss"></style>
|