2023-07-28 08:34:52 +07:00
|
|
|
<script setup lang="ts">
|
2023-08-07 16:22:10 +07:00
|
|
|
import { ref, computed, onMounted } from "vue";
|
2023-07-28 08:34:52 +07:00
|
|
|
import { useQuasar } from "quasar";
|
2023-08-16 12:55:07 +07:00
|
|
|
import { useCounterMixin } from "@/stores/mixin";
|
2023-08-22 15:24:49 +07:00
|
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
2023-09-21 13:09:42 +07:00
|
|
|
import Dialogbody from "@/modules/05_placement/components/Receive/Dialogbody.vue";
|
2023-08-16 12:55:07 +07:00
|
|
|
import http from "@/plugins/http";
|
|
|
|
|
import config from "@/app.config";
|
|
|
|
|
|
2023-07-28 08:34:52 +07:00
|
|
|
import { useRouter } from "vue-router";
|
2023-08-22 15:24:49 +07:00
|
|
|
|
2023-07-28 08:34:52 +07:00
|
|
|
import DialogHeader from "@/modules/05_placement/components/Receive/DialogHeader.vue";
|
|
|
|
|
import DialogOrgTree from "@/modules/05_placement/components/Receive/receiveModal.vue";
|
|
|
|
|
|
2023-08-16 12:55:07 +07:00
|
|
|
import type { QTableProps } from "quasar";
|
|
|
|
|
import type {
|
|
|
|
|
ResponseData,
|
|
|
|
|
ResponseRow,
|
|
|
|
|
} from "@/modules/05_placement/interface/response/Receive";
|
2023-08-04 22:15:59 +07:00
|
|
|
|
2023-08-16 12:55:07 +07:00
|
|
|
const $q = useQuasar();
|
|
|
|
|
const router = useRouter();
|
2023-09-21 13:09:42 +07:00
|
|
|
const rows2 = ref<ResponseRow[]>([]);
|
|
|
|
|
const modal = ref<boolean>(false);
|
|
|
|
|
const modalupload = ref<boolean>(false);
|
|
|
|
|
const modalTree = ref<boolean>(false);
|
|
|
|
|
const myForm = ref<any>();
|
|
|
|
|
const personal = ref<any[]>([]);
|
|
|
|
|
const personalId = ref<string>("");
|
|
|
|
|
const filterKeyword = ref<string>("");
|
|
|
|
|
const filterKeyword2 = ref<string>("");
|
|
|
|
|
const filterRef = ref<any>(null);
|
|
|
|
|
const files = ref<any>();
|
2023-09-22 11:16:25 +07:00
|
|
|
const listRecevice = ref<ResponseData[]>([]);
|
2023-09-21 13:09:42 +07:00
|
|
|
const filters = ref<ResponseRow[]>([]);
|
|
|
|
|
const rows = ref<ResponseRow[]>([]);
|
2023-08-16 12:55:07 +07:00
|
|
|
const mixin = useCounterMixin(); //เรียกฟังก์ชันกลาง
|
2023-08-22 15:24:49 +07:00
|
|
|
const transferStore = useTransferDataStore();
|
|
|
|
|
const { statusText } = transferStore;
|
2023-08-16 12:55:07 +07:00
|
|
|
const {
|
|
|
|
|
showLoader,
|
|
|
|
|
hideLoader,
|
|
|
|
|
success,
|
|
|
|
|
messageError,
|
|
|
|
|
date2Thai,
|
2023-08-17 11:40:46 +07:00
|
|
|
dialogRemove,
|
2023-08-16 12:55:07 +07:00
|
|
|
} = mixin;
|
2023-08-04 22:15:59 +07:00
|
|
|
|
2023-07-28 08:34:52 +07:00
|
|
|
const popup = () => {
|
2023-08-22 15:24:49 +07:00
|
|
|
const row = filters.value.filter(
|
|
|
|
|
(r: ResponseRow) =>
|
2023-09-01 15:59:21 +07:00
|
|
|
(r.status == "WAITTING" ||
|
|
|
|
|
r.status == "PENDING" ||
|
|
|
|
|
r.status == "APPROVE") &&
|
|
|
|
|
r.positionNumber != null
|
2023-08-22 15:24:49 +07:00
|
|
|
);
|
|
|
|
|
rows2.value = row;
|
2023-07-28 08:34:52 +07:00
|
|
|
modal.value = true;
|
|
|
|
|
};
|
2023-09-21 13:09:42 +07:00
|
|
|
//คอลัม
|
2023-07-28 08:34:52 +07:00
|
|
|
const visibleColumns = ref<string[]>([
|
|
|
|
|
"no",
|
2023-08-04 22:15:59 +07:00
|
|
|
"citizenId",
|
2023-07-28 08:34:52 +07:00
|
|
|
"fullname",
|
2023-08-04 22:15:59 +07:00
|
|
|
"organizationName",
|
2023-08-07 16:22:10 +07:00
|
|
|
"birthday",
|
2023-08-22 15:24:49 +07:00
|
|
|
"dateText",
|
|
|
|
|
"statusText",
|
2023-07-28 08:34:52 +07:00
|
|
|
]);
|
2023-09-21 13:09:42 +07:00
|
|
|
// หัวตาราง
|
2023-07-28 08:34:52 +07:00
|
|
|
const columns = ref<QTableProps["columns"]>([
|
|
|
|
|
{
|
|
|
|
|
name: "no",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ลำดับ",
|
2023-09-20 13:58:12 +07:00
|
|
|
sortable: false,
|
2023-07-28 08:34:52 +07:00
|
|
|
field: "no",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-08-04 22:15:59 +07:00
|
|
|
name: "citizenId",
|
2023-07-28 08:34:52 +07:00
|
|
|
align: "left",
|
2023-08-04 22:15:59 +07:00
|
|
|
label: "เลขประจำตัวประชาชน",
|
2023-07-28 08:34:52 +07:00
|
|
|
sortable: true,
|
|
|
|
|
field: "fullname",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
2023-08-22 15:24:49 +07:00
|
|
|
sort: (a: string, b: string) =>
|
|
|
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
2023-07-28 08:34:52 +07:00
|
|
|
},
|
|
|
|
|
{
|
2023-08-04 22:15:59 +07:00
|
|
|
name: "fullname",
|
2023-07-28 08:34:52 +07:00
|
|
|
align: "left",
|
2023-08-04 22:15:59 +07:00
|
|
|
label: "ชื่อ-นามสกุล",
|
2023-07-28 08:34:52 +07:00
|
|
|
sortable: true,
|
2023-08-04 22:15:59 +07:00
|
|
|
field: "fullname",
|
2023-07-28 08:34:52 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
2023-08-22 15:24:49 +07:00
|
|
|
sort: (a: string, b: string) =>
|
|
|
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
2023-07-28 08:34:52 +07:00
|
|
|
},
|
|
|
|
|
{
|
2023-08-04 22:15:59 +07:00
|
|
|
name: "organizationName",
|
2023-07-28 08:34:52 +07:00
|
|
|
align: "left",
|
|
|
|
|
label: "หน่วยงานที่รับโอน",
|
|
|
|
|
sortable: true,
|
2023-08-04 22:15:59 +07:00
|
|
|
field: "organizationName",
|
2023-07-28 08:34:52 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
2023-08-04 22:15:59 +07:00
|
|
|
sort: (a: string, b: string) =>
|
|
|
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
2023-07-28 08:34:52 +07:00
|
|
|
},
|
|
|
|
|
{
|
2023-08-04 22:15:59 +07:00
|
|
|
name: "birthday",
|
2023-07-28 08:34:52 +07:00
|
|
|
align: "left",
|
2023-08-04 22:15:59 +07:00
|
|
|
label: "วัน/เดือน/ปี เกิด",
|
2023-07-28 08:34:52 +07:00
|
|
|
sortable: true,
|
2023-08-04 22:15:59 +07:00
|
|
|
field: "birthday",
|
2023-07-28 08:34:52 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
2023-08-22 15:24:49 +07:00
|
|
|
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" }),
|
2023-07-28 08:34:52 +07:00
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
2023-09-21 13:09:42 +07:00
|
|
|
//save file
|
2023-09-01 15:59:21 +07:00
|
|
|
const SaveData = async () => {
|
2023-09-05 11:23:43 +07:00
|
|
|
myForm.value.validate().then((result: boolean) => {
|
|
|
|
|
if (result) {
|
2023-09-01 16:18:53 +07:00
|
|
|
const formData = new FormData();
|
|
|
|
|
formData.append("File", files.value);
|
|
|
|
|
showLoader();
|
2023-09-05 11:23:43 +07:00
|
|
|
http
|
2023-09-01 16:18:53 +07:00
|
|
|
.put(config.API.receiveFile(personalId.value), formData)
|
|
|
|
|
.then(() => {
|
|
|
|
|
success($q, "บันทึกข้อมูลสำเร็จ");
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
messageError($q, e);
|
|
|
|
|
})
|
|
|
|
|
.finally(async () => {
|
|
|
|
|
await clickCloseUpload();
|
|
|
|
|
hideLoader();
|
2023-09-05 11:23:43 +07:00
|
|
|
|
2023-09-01 16:18:53 +07:00
|
|
|
});
|
2023-09-05 11:23:43 +07:00
|
|
|
}})};
|
2023-09-01 15:59:21 +07:00
|
|
|
|
2023-08-16 12:55:07 +07:00
|
|
|
const fecthlistRecevice = async () => {
|
|
|
|
|
showLoader();
|
|
|
|
|
await http
|
|
|
|
|
.get(config.API.receiveData())
|
|
|
|
|
.then((res: any) => {
|
|
|
|
|
const response = res.data.result;
|
|
|
|
|
listRecevice.value = response;
|
|
|
|
|
let list: ResponseRow[] = [];
|
|
|
|
|
response.map((e: ResponseData) => {
|
|
|
|
|
list.push({
|
|
|
|
|
personalId: e.id ?? "",
|
|
|
|
|
citizenId: e.citizenId ?? "-",
|
2023-08-17 11:40:46 +07:00
|
|
|
fullname: e.prefix + e.firstname + " " + e.lastname,
|
2023-08-16 12:55:07 +07:00
|
|
|
organizationName:
|
|
|
|
|
e.organizationName +
|
|
|
|
|
" " +
|
|
|
|
|
e.organizationShortName +
|
|
|
|
|
" " +
|
|
|
|
|
e.positionNumber +
|
|
|
|
|
" " +
|
|
|
|
|
e.positionPath,
|
|
|
|
|
orgName: e.organizationName,
|
|
|
|
|
organizationShortName: e.organizationShortName,
|
|
|
|
|
positionNumber: e.positionNumber,
|
|
|
|
|
positionPath: e.positionPath,
|
2023-09-21 10:49:05 +07:00
|
|
|
birthday: e.dateOfBirth == null ? "-" : date2Thai(e.dateOfBirth) &&
|
|
|
|
|
e.dateOfBirth.toString() === "0001-01-01T00:00:00" ? "-" : date2Thai(e.dateOfBirth),
|
2023-08-16 12:55:07 +07:00
|
|
|
status: e.status,
|
2023-08-22 15:24:49 +07:00
|
|
|
statusText: statusText(e.status ?? ""),
|
|
|
|
|
createdAt: e.createdAt !== null ? new Date(e.createdAt) : null,
|
|
|
|
|
dateText: e.createdAt !== null ? date2Thai(e.createdAt) : "-",
|
2023-08-16 12:55:07 +07:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
rows.value = list;
|
|
|
|
|
filters.value = list;
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
messageError($q, e);
|
|
|
|
|
})
|
|
|
|
|
.finally(() => {
|
|
|
|
|
hideLoader();
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-21 13:09:42 +07:00
|
|
|
// รีเซ็ตค่าในฟิลเตอร์
|
2023-08-16 12:55:07 +07:00
|
|
|
const resetFilter = () => {
|
|
|
|
|
filterKeyword.value = "";
|
|
|
|
|
filterKeyword2.value = "";
|
|
|
|
|
filterRef.value.focus();
|
|
|
|
|
};
|
2023-09-21 13:09:42 +07:00
|
|
|
// ไปหน้าเพิ่มข้อมูล
|
2023-08-16 12:55:07 +07:00
|
|
|
const add = () => {
|
|
|
|
|
router.push(`/receive/add`);
|
|
|
|
|
};
|
2023-09-21 13:09:42 +07:00
|
|
|
// ปิดโมเดล
|
2023-08-16 12:55:07 +07:00
|
|
|
const clickClose = () => {
|
|
|
|
|
modal.value = false;
|
2023-09-21 13:09:42 +07:00
|
|
|
filterKeyword2.value = "";
|
2023-08-16 12:55:07 +07:00
|
|
|
};
|
2023-09-21 13:09:42 +07:00
|
|
|
// ปิดโมเดลอัปเดตไฟล์
|
2023-08-30 12:51:12 +07:00
|
|
|
const clickCloseUpload = () => {
|
|
|
|
|
modalupload.value = false;
|
2023-09-05 11:23:43 +07:00
|
|
|
files.value = null
|
2023-08-30 12:51:12 +07:00
|
|
|
};
|
2023-09-21 13:09:42 +07:00
|
|
|
// ปิดโมเดลโครงสร้าง
|
2023-08-04 12:29:38 +07:00
|
|
|
const openModalTree = (id: string) => {
|
|
|
|
|
personalId.value = id;
|
2023-08-08 09:28:24 +07:00
|
|
|
personal.value = listRecevice.value.filter((e: any) => e.id === id);
|
2023-08-04 12:29:38 +07:00
|
|
|
modalTree.value = true;
|
2023-07-28 08:34:52 +07:00
|
|
|
};
|
2023-09-21 13:09:42 +07:00
|
|
|
// เปิดโมเดลไฟล์
|
2023-08-30 12:51:12 +07:00
|
|
|
const openUpload = (id: string) => {
|
|
|
|
|
personalId.value = id;
|
|
|
|
|
modalupload.value = true;
|
|
|
|
|
};
|
2023-09-21 13:09:42 +07:00
|
|
|
// ยินยันลบ
|
2023-08-04 22:15:59 +07:00
|
|
|
const openDelete = (id: string) => {
|
2023-08-17 11:40:46 +07:00
|
|
|
dialogRemove($q, async () => await fetchDataDelete(id));
|
2023-08-16 12:55:07 +07:00
|
|
|
};
|
2023-09-21 13:09:42 +07:00
|
|
|
// ลบข้อมูล
|
2023-08-16 12:55:07 +07:00
|
|
|
const fetchDataDelete = async (id: string) => {
|
|
|
|
|
showLoader();
|
|
|
|
|
await http
|
|
|
|
|
.delete(config.API.receiveDataId(id))
|
|
|
|
|
.then((res) => {
|
|
|
|
|
success($q, "ลบข้อมูลสำเร็จ");
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
messageError($q, e);
|
2023-08-04 22:15:59 +07:00
|
|
|
})
|
2023-08-16 12:55:07 +07:00
|
|
|
.finally(() => {
|
|
|
|
|
fecthlistRecevice();
|
|
|
|
|
hideLoader();
|
|
|
|
|
});
|
2023-08-04 22:15:59 +07:00
|
|
|
};
|
|
|
|
|
|
2023-09-21 13:09:42 +07:00
|
|
|
// เปิดโมเดล โครงสร้าง
|
2023-07-28 08:34:52 +07:00
|
|
|
const closeModalTree = async () => {
|
2023-08-07 17:18:18 +07:00
|
|
|
await fecthlistRecevice();
|
2023-07-28 08:34:52 +07:00
|
|
|
modalTree.value = false;
|
|
|
|
|
};
|
2023-08-03 14:49:17 +07:00
|
|
|
|
2023-09-21 13:09:42 +07:00
|
|
|
// ไปหน้ารายละเอียด
|
2023-08-04 12:29:38 +07:00
|
|
|
const nextPage = (row: any) => {
|
|
|
|
|
router.push({
|
|
|
|
|
path: `/receive/${row.personalId}`,
|
|
|
|
|
});
|
2023-08-03 14:49:17 +07:00
|
|
|
};
|
2023-08-16 12:55:07 +07:00
|
|
|
|
2023-09-21 13:09:42 +07:00
|
|
|
onMounted(() => {
|
|
|
|
|
fecthlistRecevice();
|
|
|
|
|
});
|
2023-07-28 08:34:52 +07:00
|
|
|
</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">
|
2023-08-04 22:15:59 +07:00
|
|
|
<q-btn flat round color="primary" @click="add" icon="mdi-plus">
|
|
|
|
|
<q-tooltip>เพิ่มข้อมูล</q-tooltip>
|
|
|
|
|
</q-btn>
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-btn size="14px" flat round color="add" icon="mdi-account-arrow-right" @click="popup()" >
|
2023-07-28 08:34:52 +07:00
|
|
|
<q-tooltip>ส่งไปออกคำสั่งรับโอน</q-tooltip>
|
|
|
|
|
</q-btn>
|
|
|
|
|
<q-space />
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-input class="col-xs-12 col-sm-3 col-md-2" standout dense v-model="filterKeyword"
|
|
|
|
|
ref="filterRef" outlined debounce="300" placeholder="ค้นหา" >
|
2023-07-28 08:34:52 +07:00
|
|
|
<template v-slot:append>
|
|
|
|
|
<q-icon v-if="filterKeyword == ''" name="search" />
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-icon v-if="filterKeyword !== ''" name="clear" class="cursor-pointer" @click="resetFilter" />
|
2023-07-28 08:34:52 +07:00
|
|
|
</template>
|
|
|
|
|
</q-input>
|
2023-09-21 13:09:42 +07:00
|
|
|
<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" />
|
2023-07-28 08:34:52 +07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-12 q-pt-sm">
|
2023-09-21 13:09:42 +07:00
|
|
|
<d-table :columns="columns" :rows="rows" :filter="filterKeyword" row-key="fullname"
|
|
|
|
|
:visible-columns="visibleColumns" >
|
2023-07-28 08:34:52 +07:00
|
|
|
<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>
|
2023-08-04 12:29:38 +07:00
|
|
|
<q-th auto-width />
|
2023-07-28 08:34:52 +07:00
|
|
|
</q-tr>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:body="props">
|
|
|
|
|
<q-tr :props="props" class="cursor-pointer">
|
2023-08-04 12:29:38 +07:00
|
|
|
<q-td key="no" :props="props" @click="nextPage(props.row)">
|
2023-07-28 08:34:52 +07:00
|
|
|
{{ props.rowIndex + 1 }}
|
|
|
|
|
</q-td>
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-td key="citizenId" :props="props" @click="nextPage(props.row)" >
|
2023-08-04 22:15:59 +07:00
|
|
|
{{ props.row.citizenId }}
|
2023-07-28 08:34:52 +07:00
|
|
|
</q-td>
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-td key="fullname" :props="props" @click="nextPage(props.row)" >
|
2023-08-04 22:15:59 +07:00
|
|
|
{{ props.row.fullname }}
|
2023-07-28 08:34:52 +07:00
|
|
|
</q-td>
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-td key="organizationName" :props="props" @click="nextPage(props.row)" >
|
|
|
|
|
<div v-if=" props.row.orgName !== null || props.row.positionPath !== null " >
|
2023-08-04 22:15:59 +07:00
|
|
|
<div class="col-4">
|
|
|
|
|
<div class="text-weight-medium">
|
2023-09-21 13:09:42 +07:00
|
|
|
{{ props.row.orgName !== null ? props.row.orgName : "-" }}
|
|
|
|
|
{{ props.row.organizationShortName !== null ? `(${props.row.organizationShortName})` : "" }}
|
2023-08-04 22:15:59 +07:00
|
|
|
</div>
|
|
|
|
|
<div class="text-weight-light">
|
2023-09-21 13:09:42 +07:00
|
|
|
{{ props.row.positionPath !== null ? props.row.positionPath : "-" }}
|
|
|
|
|
{{ props.row.positionNumber !== null ? `(${props.row.positionNumber})` : "" }}
|
2023-08-04 22:15:59 +07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else>
|
|
|
|
|
<div class="col-4">
|
|
|
|
|
<div class="text-weight-medium">-</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-07-28 08:34:52 +07:00
|
|
|
</q-td>
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-td key="birthday" :props="props" @click="nextPage(props.row)" >
|
2023-08-04 22:15:59 +07:00
|
|
|
{{ props.row.birthday }}
|
2023-07-28 08:34:52 +07:00
|
|
|
</q-td>
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-td key="dateText" :props="props" @click="nextPage(props.row)" >
|
2023-08-22 15:24:49 +07:00
|
|
|
{{ props.row.dateText }}
|
|
|
|
|
</q-td>
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-td key="statusText" :props="props" @click="nextPage(props.row)" >
|
2023-08-22 15:24:49 +07:00
|
|
|
{{ props.row.statusText }}
|
|
|
|
|
</q-td>
|
2023-07-28 08:34:52 +07:00
|
|
|
<q-td auto-width>
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-btn icon="mdi-dots-vertical" size="12px" color="grey-7"
|
|
|
|
|
flat round dense >
|
|
|
|
|
<q-menu transition-show="jump-down" transition-hide="jump-up" >
|
2023-07-28 08:34:52 +07:00
|
|
|
<q-list dense style="min-width: 100px">
|
2023-09-21 13:09:42 +07:00
|
|
|
<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" />
|
2023-07-28 08:34:52 +07:00
|
|
|
</q-item-section>
|
2023-09-05 11:23:43 +07:00
|
|
|
<q-item-section
|
|
|
|
|
>เลือกหน่วยงานที่รับโอน</q-item-section
|
|
|
|
|
>
|
2023-08-04 22:15:59 +07:00
|
|
|
</q-item>
|
2023-09-21 13:09:42 +07:00
|
|
|
<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 size="xs" name="attach_file"
|
|
|
|
|
:color=" props.row.status == 'REPORT' || props.row.status == 'DONE' ? 'grey' : 'blue' " />
|
2023-08-30 12:51:12 +07:00
|
|
|
</q-item-section>
|
2023-09-05 11:23:43 +07:00
|
|
|
<q-item-section>อัปโหลดเอกสาร</q-item-section>
|
2023-08-30 12:51:12 +07:00
|
|
|
</q-item>
|
2023-09-21 13:09:42 +07:00
|
|
|
<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" >
|
2023-08-04 22:15:59 +07:00
|
|
|
<q-tooltip>ลบข้อมูล</q-tooltip>
|
2023-09-05 11:23:43 +07:00
|
|
|
<q-icon
|
|
|
|
|
:color="
|
|
|
|
|
props.row.status == 'REPORT' ||
|
2023-09-21 13:09:42 +07:00
|
|
|
props.row.status == 'DONE' ? 'grey' : 'red' "
|
2023-09-05 11:23:43 +07:00
|
|
|
size="xs"
|
|
|
|
|
name="mdi-delete"
|
|
|
|
|
/>
|
2023-08-04 22:15:59 +07:00
|
|
|
</q-item-section>
|
|
|
|
|
<q-item-section>ลบ</q-item-section>
|
2023-07-28 08:34:52 +07:00
|
|
|
</q-item>
|
|
|
|
|
</q-list>
|
|
|
|
|
</q-menu>
|
|
|
|
|
</q-btn>
|
|
|
|
|
</q-td>
|
|
|
|
|
</q-tr>
|
|
|
|
|
</template>
|
|
|
|
|
</d-table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</q-card>
|
|
|
|
|
|
2023-09-21 13:09:42 +07:00
|
|
|
<Dialogbody
|
|
|
|
|
v-model:Modal="modal"
|
|
|
|
|
:clickClose="clickClose"
|
|
|
|
|
:rows2="rows2"
|
|
|
|
|
v-model:filterKeyword2="filterKeyword2"
|
|
|
|
|
:fecthlistRecevice="fecthlistRecevice"
|
|
|
|
|
:nextPage="nextPage"
|
|
|
|
|
/>
|
2023-08-30 12:51:12 +07:00
|
|
|
<q-dialog v-model="modalupload">
|
|
|
|
|
<q-card style="width: 600px">
|
2023-09-05 11:23:43 +07:00
|
|
|
<DialogHeader title="อัปโหลดเอกสาร" :close="clickCloseUpload" />
|
|
|
|
|
<q-separator />
|
|
|
|
|
<q-card-section class="q-py-sm">
|
2023-08-30 12:51:12 +07:00
|
|
|
<div class="col-12 row items-center q-col-gutter-sm">
|
2023-08-30 19:23:57 +07:00
|
|
|
<div class="col-12">
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-file ref="myForm" outlined dense v-model="files" label="อัปโหลดเอกสาร" lazy-rules
|
|
|
|
|
:rules="[(val) => val || 'กรุณาเลือกไฟล์หนังสือถึงหน่วยงานที่รับโอน']" hide-bottom-space >
|
2023-08-30 19:23:57 +07:00
|
|
|
<template v-slot:prepend>
|
|
|
|
|
<q-icon name="attach_file" />
|
|
|
|
|
</template>
|
|
|
|
|
</q-file>
|
|
|
|
|
</div>
|
2023-08-30 12:51:12 +07:00
|
|
|
</div>
|
|
|
|
|
</q-card-section>
|
2023-09-05 11:23:43 +07:00
|
|
|
<q-separator />
|
|
|
|
|
<div class="row q-px-sm q-py-xs">
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-space />
|
2023-09-21 13:09:42 +07:00
|
|
|
<q-btn flat round color="public" @click="SaveData()" icon="mdi-content-save-outline" >
|
2023-08-30 19:23:57 +07:00
|
|
|
<q-tooltip>บันทึก</q-tooltip>
|
|
|
|
|
</q-btn>
|
2023-09-05 11:23:43 +07:00
|
|
|
</div>
|
2023-08-30 12:51:12 +07:00
|
|
|
</q-card>
|
|
|
|
|
</q-dialog>
|
|
|
|
|
|
2023-09-05 11:23:43 +07:00
|
|
|
<DialogOrgTree
|
|
|
|
|
v-model:modal="modalTree"
|
|
|
|
|
:close="closeModalTree"
|
|
|
|
|
:personal="personal"
|
|
|
|
|
:personalId="personalId"
|
|
|
|
|
/>
|
2023-07-28 08:34:52 +07:00
|
|
|
</template>
|
|
|
|
|
<style scoped lang="scss"></style>
|