912 lines
28 KiB
Vue
912 lines
28 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 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 mixin = useCounterMixin(); //เรียกฟังก์ชันกลาง
|
|
const transferStore = useTransferDataStore();
|
|
const { statusText } = transferStore;
|
|
const {
|
|
showLoader,
|
|
hideLoader,
|
|
dialogMessage,
|
|
success,
|
|
messageError,
|
|
date2Thai,
|
|
dialogRemove,
|
|
} = mixin;
|
|
|
|
const selected = ref<ResponseRow[]>([]);
|
|
|
|
const modal = ref<boolean>(false);
|
|
const popup = () => {
|
|
const row = filters.value.filter(
|
|
(r: ResponseRow) =>
|
|
r.status == "WAITTING" || r.status == "PENDING" || r.status == "APPROVE"
|
|
);
|
|
rows2.value = row;
|
|
modal.value = true;
|
|
};
|
|
|
|
const modalupload = ref<boolean>(false);
|
|
|
|
const modalTree = ref<boolean>(false);
|
|
const personal = ref<any[]>([]);
|
|
const personalId = ref<string>("");
|
|
const visibleColumns = ref<string[]>([
|
|
"no",
|
|
"citizenId",
|
|
"fullname",
|
|
"organizationName",
|
|
"birthday",
|
|
"dateText",
|
|
"statusText",
|
|
]);
|
|
|
|
const visibleColumns2 = ref<string[]>([
|
|
"no",
|
|
"citizenId",
|
|
"fullname",
|
|
"organizationName",
|
|
"birthday",
|
|
"dateText",
|
|
"statusText",
|
|
]); //ค้นหา คอลัมน์ คอลัมน์ที่แสดง
|
|
const filterKeyword = ref<string>("");
|
|
const filterKeyword2 = ref<string>("");
|
|
const filterRef = ref<any>(null);
|
|
const files = ref<any>();
|
|
const fileDocDataUpload = ref<File[]>([]);
|
|
const listRecevice = ref<any[]>([]);
|
|
const filters = ref<ResponseRow[]>([]);
|
|
const rows = ref<ResponseRow[]>([
|
|
// {
|
|
// 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<ResponseRow[]>([
|
|
// {
|
|
// 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",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
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" }),
|
|
},
|
|
]);
|
|
const columns2 = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "no",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: true,
|
|
field: "no",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "citizenId",
|
|
align: "left",
|
|
label: "เลขประจำตัวประชาชน",
|
|
sortable: true,
|
|
field: "citizenId",
|
|
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" }),
|
|
},
|
|
]);
|
|
|
|
onMounted(() => {
|
|
fecthlistRecevice();
|
|
});
|
|
|
|
const fecthlistRecevice = async () => {
|
|
showLoader();
|
|
await http
|
|
.get(config.API.receiveData())
|
|
.then((res: any) => {
|
|
const response = res.data.result;
|
|
listRecevice.value = response;
|
|
// console.log(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),
|
|
status: e.status,
|
|
statusText: statusText(e.status ?? ""),
|
|
createdAt: e.createdAt !== null ? new Date(e.createdAt) : null,
|
|
dateText: e.createdAt !== null ? date2Thai(e.createdAt) : "-",
|
|
});
|
|
});
|
|
// console.log(list);
|
|
rows.value = list;
|
|
filters.value = list;
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
};
|
|
|
|
const fileUploadDoc = async (files: any) => {
|
|
files.forEach((file: any) => {
|
|
fileDocDataUpload.value.push(file);
|
|
});
|
|
};
|
|
|
|
const addUpload= async () => {
|
|
// showLoader();
|
|
// await http
|
|
// .post(config.API.listRoundInsignia())
|
|
// .then(() => {
|
|
// success($q, "บันทึกข้อมูลสำเร็จ");
|
|
// })
|
|
// .catch((e) => {
|
|
// messageError($q, e);
|
|
// })
|
|
// .finally(async () => {
|
|
// hideLoader();
|
|
// });
|
|
};
|
|
|
|
const SaveData = async () => {
|
|
await addUpload();
|
|
await clickCloseUpload();
|
|
};
|
|
|
|
const resetFilter = () => {
|
|
filterKeyword.value = "";
|
|
filterKeyword2.value = "";
|
|
filterRef.value.focus();
|
|
};
|
|
|
|
const checkSelected = computed(() => {
|
|
if (selected.value.length === 0) {
|
|
return true;
|
|
}
|
|
});
|
|
|
|
const add = () => {
|
|
router.push(`/receive/add`);
|
|
};
|
|
|
|
const clickClose = () => {
|
|
modal.value = false;
|
|
};
|
|
const clickCloseUpload = () => {
|
|
modalupload.value = false;
|
|
};
|
|
|
|
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 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 = (row: any) => {
|
|
router.push({
|
|
path: `/receive/${row.personalId}`,
|
|
});
|
|
};
|
|
|
|
const saveOrder = async () => {
|
|
const id = selected.value.map((r: any) => r.personalId);
|
|
const body = {
|
|
id,
|
|
};
|
|
|
|
showLoader();
|
|
await http
|
|
.post(config.API.receiveReport, body)
|
|
.then((res: any) => {
|
|
// const data = res.data.result;
|
|
// console.log(data);
|
|
success($q, "ส่งไปออกคำสั่งรับโอนสำเร็จ");
|
|
clickClose();
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(async () => {
|
|
await fecthlistRecevice();
|
|
hideLoader();
|
|
});
|
|
};
|
|
</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"
|
|
>
|
|
<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)">
|
|
{{ props.rowIndex + 1 }}
|
|
</q-td>
|
|
<q-td
|
|
key="citizenId"
|
|
:props="props"
|
|
@click="nextPage(props.row)"
|
|
>
|
|
{{ props.row.citizenId }}
|
|
</q-td>
|
|
<q-td
|
|
key="fullname"
|
|
:props="props"
|
|
@click="nextPage(props.row)"
|
|
>
|
|
{{ props.row.fullname }}
|
|
</q-td>
|
|
<q-td
|
|
key="organizationName"
|
|
:props="props"
|
|
@click="nextPage(props.row)"
|
|
>
|
|
<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)"
|
|
>
|
|
{{ props.row.birthday }}
|
|
</q-td>
|
|
<q-td
|
|
key="dateText"
|
|
:props="props"
|
|
@click="nextPage(props.row)"
|
|
>
|
|
{{ props.row.dateText }}
|
|
</q-td>
|
|
<q-td
|
|
key="statusText"
|
|
:props="props"
|
|
@click="nextPage(props.row)"
|
|
>
|
|
{{ 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
|
|
:color="
|
|
props.row.status == 'REPORT' ||
|
|
props.row.status == 'DONE'
|
|
? 'grey'
|
|
: 'blue'
|
|
"
|
|
size="xs"
|
|
name="attach_file"
|
|
/>
|
|
</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>
|
|
|
|
<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-end">
|
|
<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="citizenId" :props="props" @click="nextPage(props.row)">
|
|
{{ props.row.citizenId }}
|
|
</q-td>
|
|
<q-td key="fullname" :props="props" @click="nextPage(props.row)">
|
|
{{ props.row.fullname }}
|
|
</q-td>
|
|
<q-td
|
|
key="organizationName"
|
|
:props="props"
|
|
@click="nextPage(props.row)"
|
|
>
|
|
<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)">
|
|
{{ props.row.birthday }}
|
|
</q-td>
|
|
<q-td key="dateText" :props="props" @click="nextPage(props.row)">
|
|
{{ props.row.dateText }}
|
|
</q-td>
|
|
<q-td
|
|
key="statusText"
|
|
:props="props"
|
|
@click="nextPage(props.row)"
|
|
>
|
|
{{ 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="saveOrder"
|
|
:disable="checkSelected"
|
|
color="public"
|
|
/>
|
|
</q-card-actions>
|
|
</q-card>
|
|
</q-dialog>
|
|
|
|
<q-dialog v-model="modalupload">
|
|
<q-card style="width: 600px">
|
|
<DialogHeader title="อัพโหลดเอกสาร" :close="clickCloseUpload" />
|
|
<q-separator />
|
|
<q-separator />
|
|
<q-card-section class="q-pt-none">
|
|
<div class="col-12 row items-center q-col-gutter-sm">
|
|
<div class="col-12">
|
|
<q-file
|
|
outlined
|
|
dense
|
|
v-model="files"
|
|
@added="fileUploadDoc"
|
|
label="อัพโหลดเอกสาร"
|
|
lazy-rules
|
|
>
|
|
<!-- :rules="[
|
|
(val) => val || 'กรุณาเลือกไฟล์หนังสือถึงหน่วยงานที่รับโอน',
|
|
]" -->
|
|
<template v-slot:prepend>
|
|
<q-icon name="attach_file" />
|
|
</template>
|
|
</q-file>
|
|
</div>
|
|
</div>
|
|
</q-card-section>
|
|
<q-card-actions class="text-primary q-py-sm">
|
|
<q-space />
|
|
<q-btn
|
|
flat
|
|
round
|
|
color="public"
|
|
@click="SaveData"
|
|
icon="mdi-content-save-outline"
|
|
>
|
|
<q-tooltip>บันทึก</q-tooltip>
|
|
</q-btn>
|
|
</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>
|