หน้ารายการประเมิน
This commit is contained in:
parent
0b4a87e293
commit
9f247273c1
12 changed files with 334 additions and 89 deletions
|
|
@ -3,6 +3,7 @@ import env from "../index";
|
||||||
const evaluation = `${env.API_URI}/evaluation`;
|
const evaluation = `${env.API_URI}/evaluation`;
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
evaluationList:() =>`${evaluation}/user`,
|
||||||
evaluationCheckStatus: () => `${evaluation}/check-status`,
|
evaluationCheckStatus: () => `${evaluation}/check-status`,
|
||||||
evaluationCheckStep: (id: string) => `${evaluation}/check/${id}`,
|
evaluationCheckStep: (id: string) => `${evaluation}/check/${id}`,
|
||||||
evaluationCheckById: (id: string) => `${evaluation}/check/${id}`,
|
evaluationCheckById: (id: string) => `${evaluation}/check/${id}`,
|
||||||
|
|
|
||||||
|
|
@ -52,8 +52,6 @@ function onClickPopupHistory() {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function onCilckNextStep() {
|
async function onCilckNextStep() {
|
||||||
console.log(store.step);
|
|
||||||
|
|
||||||
const functionCreateDoc: (() => Promise<void>) | null =
|
const functionCreateDoc: (() => Promise<void>) | null =
|
||||||
store.step === 1
|
store.step === 1
|
||||||
? await saveStep1
|
? await saveStep1
|
||||||
|
|
@ -94,6 +92,13 @@ async function onCilckNextStep() {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function validateForm() {
|
async function validateForm() {
|
||||||
|
console.log(downloadFileRef.value);
|
||||||
|
|
||||||
|
store.checkFileupload = !store.checkFileupload;
|
||||||
|
console.log(store.checkFileupload);
|
||||||
|
|
||||||
|
const emptyValues = downloadFileRef.value.filter((e: any) => e === "");
|
||||||
|
|
||||||
const hasError = [];
|
const hasError = [];
|
||||||
for (const key in formCommandRef) {
|
for (const key in formCommandRef) {
|
||||||
if (Object.prototype.hasOwnProperty.call(formCommandRef, key)) {
|
if (Object.prototype.hasOwnProperty.call(formCommandRef, key)) {
|
||||||
|
|
@ -105,13 +110,21 @@ async function validateForm() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (hasError.every((result) => result === true)) {
|
if (hasError.every((result) => result === true)) {
|
||||||
store.step === 2 ? saveStep2() : saveStep6();
|
if (emptyValues.length > 0) {
|
||||||
|
console.log("There are empty values in the array.");
|
||||||
|
} else {
|
||||||
|
store.step === 2 ? saveStep2() : saveStep6();
|
||||||
|
}
|
||||||
|
|
||||||
|
// store.step === 2 && emptyValues.length > 0 ? saveStep2() : saveStep6();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const pdfSrc = ref<any>();
|
const pdfSrc = ref<any>();
|
||||||
async function updateFilePDF(url: any) {
|
const urlDownloadFile = ref<string>("");
|
||||||
|
async function updateFilePDF(url: any, urlDownload: string) {
|
||||||
pdfSrc.value = url;
|
pdfSrc.value = url;
|
||||||
|
urlDownloadFile.value = urlDownload;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** function เช็คการยื่นข้อประเมิน*/
|
/** function เช็คการยื่นข้อประเมิน*/
|
||||||
|
|
@ -123,7 +136,6 @@ async function fetchCheckStatus() {
|
||||||
const data = res.data.result;
|
const data = res.data.result;
|
||||||
const id =
|
const id =
|
||||||
route.params.type === "expert" ? data.expertId : data.specialExpertId;
|
route.params.type === "expert" ? data.expertId : data.specialExpertId;
|
||||||
|
|
||||||
router.push(`/evaluate/detail/${route.params.type}/${id}`);
|
router.push(`/evaluate/detail/${route.params.type}/${id}`);
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
|
|
@ -324,13 +336,13 @@ const formCommandRef: FormCommandRef = {
|
||||||
fileEvaluation5: fileEvaluation5Ref,
|
fileEvaluation5: fileEvaluation5Ref,
|
||||||
fileEvaluation6: fileEvaluation6Ref,
|
fileEvaluation6: fileEvaluation6Ref,
|
||||||
};
|
};
|
||||||
|
const downloadFileRef = ref<any>();
|
||||||
|
|
||||||
function updateformCommand(val: any, ref: any) {
|
function updateformCommand(val: any, ref: any) {
|
||||||
formCommand.commanderFullname = val.commanderFullname;
|
formCommand.commanderFullname = val.commanderFullname;
|
||||||
formCommand.commanderPosition = val.commanderPosition;
|
formCommand.commanderPosition = val.commanderPosition;
|
||||||
formCommand.commanderAboveFullname = val.commanderAboveFullname;
|
formCommand.commanderAboveFullname = val.commanderAboveFullname;
|
||||||
formCommand.commanderAbovePosition = val.commanderAbovePosition;
|
formCommand.commanderAbovePosition = val.commanderAbovePosition;
|
||||||
|
|
||||||
commanderFullnameRef.value = ref.commanderFullnameRef;
|
commanderFullnameRef.value = ref.commanderFullnameRef;
|
||||||
commanderPositionRef.value = ref.commanderPositionRef;
|
commanderPositionRef.value = ref.commanderPositionRef;
|
||||||
commanderAboveFullnameRef.value = ref.commanderAboveFullnameRef;
|
commanderAboveFullnameRef.value = ref.commanderAboveFullnameRef;
|
||||||
|
|
@ -341,7 +353,9 @@ function updateformCommand(val: any, ref: any) {
|
||||||
fileEvaluation4Ref.value = ref.fileEvaluation4Ref;
|
fileEvaluation4Ref.value = ref.fileEvaluation4Ref;
|
||||||
fileEvaluation5Ref.value = ref.fileEvaluation5Ref;
|
fileEvaluation5Ref.value = ref.fileEvaluation5Ref;
|
||||||
fileEvaluation6Ref.value = ref.fileEvaluation6Ref;
|
fileEvaluation6Ref.value = ref.fileEvaluation6Ref;
|
||||||
|
downloadFileRef.value = ref.downloadFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
async function saveStep2() {
|
async function saveStep2() {
|
||||||
dialogConfirm(
|
dialogConfirm(
|
||||||
$q,
|
$q,
|
||||||
|
|
@ -572,10 +586,12 @@ onMounted(async () => {
|
||||||
<ViewStep3
|
<ViewStep3
|
||||||
v-if="store.step === 3 && pdfSrc"
|
v-if="store.step === 3 && pdfSrc"
|
||||||
:pdfSrc="pdfSrc"
|
:pdfSrc="pdfSrc"
|
||||||
|
:urlDownloadFile="urlDownloadFile"
|
||||||
/>
|
/>
|
||||||
<ViewStep7
|
<ViewStep7
|
||||||
v-if="store.step === 7 && pdfSrc"
|
v-if="store.step === 7 && pdfSrc"
|
||||||
:pdfSrc="pdfSrc"
|
:pdfSrc="pdfSrc"
|
||||||
|
:urlDownloadFile="urlDownloadFile"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,7 @@ const store = useEvaluateStore();
|
||||||
<q-step
|
<q-step
|
||||||
:name="7"
|
:name="7"
|
||||||
prefix="7"
|
prefix="7"
|
||||||
title="ตรวจสอบเอกสารเล่ม 2"
|
title="รอพิจารณาผลการประเมิน 2"
|
||||||
:done="store.currentStep >= 7"
|
:done="store.currentStep >= 7"
|
||||||
:disable="store.currentStep < 7"
|
:disable="store.currentStep < 7"
|
||||||
>
|
>
|
||||||
|
|
@ -83,7 +83,7 @@ const store = useEvaluateStore();
|
||||||
<q-step
|
<q-step
|
||||||
:name="8"
|
:name="8"
|
||||||
prefix="8"
|
prefix="8"
|
||||||
title="รอพิจารณาผล"
|
title="ตรวจสอบความถูกต้องของเอกสารเล่ม 2"
|
||||||
:done="store.currentStep >= 8"
|
:done="store.currentStep >= 8"
|
||||||
:disable="store.currentStep < 8"
|
:disable="store.currentStep < 8"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,12 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, onMounted } from "vue";
|
import { ref, onMounted } from "vue";
|
||||||
import type { QTableProps } from "quasar";
|
import type { QTableProps } from "quasar";
|
||||||
|
import { useRouter } from "vue-router";
|
||||||
|
|
||||||
import { useEvaluateStore } from "@/modules/06_evaluate/store";
|
import { useEvaluateStore } from "@/modules/06_evaluate/store";
|
||||||
|
|
||||||
const store = useEvaluateStore();
|
const store = useEvaluateStore();
|
||||||
|
const router = useRouter();
|
||||||
const props = defineProps({
|
|
||||||
row: {
|
|
||||||
type: Array as () => any[],
|
|
||||||
require: true,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
/** ค้นหาคอลัม */
|
/** ค้นหาคอลัม */
|
||||||
const visibleColumns = ref<string[]>(["no", "type", "dateSend", "status"]);
|
const visibleColumns = ref<string[]>(["no", "type", "dateSend", "status"]);
|
||||||
|
|
@ -23,7 +18,7 @@ const columns = ref<QTableProps["columns"]>([
|
||||||
sortable: true,
|
sortable: true,
|
||||||
field: "no",
|
field: "no",
|
||||||
headerStyle: "font-size: 14px",
|
headerStyle: "font-size: 14px",
|
||||||
style: "font-size: 14px; width:5px;",
|
style: "font-size: 14px; ",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "type",
|
name: "type",
|
||||||
|
|
@ -32,7 +27,7 @@ const columns = ref<QTableProps["columns"]>([
|
||||||
sortable: true,
|
sortable: true,
|
||||||
field: "type",
|
field: "type",
|
||||||
headerStyle: "font-size: 14px",
|
headerStyle: "font-size: 14px",
|
||||||
style: "font-size: 14px; width:15%;",
|
style: "font-size: 14px; ",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "dateSend",
|
name: "dateSend",
|
||||||
|
|
@ -41,7 +36,7 @@ const columns = ref<QTableProps["columns"]>([
|
||||||
sortable: true,
|
sortable: true,
|
||||||
field: "dateSend",
|
field: "dateSend",
|
||||||
headerStyle: "font-size: 14px",
|
headerStyle: "font-size: 14px",
|
||||||
style: "font-size: 14px; width:15%;",
|
style: "font-size: 14px; ",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "status",
|
name: "status",
|
||||||
|
|
@ -53,6 +48,16 @@ const columns = ref<QTableProps["columns"]>([
|
||||||
style: "font-size: 14px",
|
style: "font-size: 14px",
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
const pagination = ref({
|
||||||
|
sortBy: "",
|
||||||
|
descending: true,
|
||||||
|
page: 1,
|
||||||
|
rowsPerPage: 10,
|
||||||
|
});
|
||||||
|
|
||||||
|
function redirectToDetail(data: any) {
|
||||||
|
router.push(`/evaluate/detail/${data.typeparam.toLowerCase()}/${data.id}`);
|
||||||
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
store.columns = columns.value;
|
store.columns = columns.value;
|
||||||
|
|
@ -71,6 +76,7 @@ onMounted(() => {
|
||||||
:rows-per-page-options="[10, 25, 50, 100]"
|
:rows-per-page-options="[10, 25, 50, 100]"
|
||||||
:visible-columns="store.visibleColumns"
|
:visible-columns="store.visibleColumns"
|
||||||
:filter="store.filterKeyword"
|
:filter="store.filterKeyword"
|
||||||
|
v-model:pagination="pagination"
|
||||||
>
|
>
|
||||||
<template v-slot:header="props">
|
<template v-slot:header="props">
|
||||||
<q-tr :props="props">
|
<q-tr :props="props">
|
||||||
|
|
@ -81,7 +87,12 @@ onMounted(() => {
|
||||||
</template>
|
</template>
|
||||||
<template v-slot:body="props">
|
<template v-slot:body="props">
|
||||||
<q-tr :props="props" class="cursor-pointer">
|
<q-tr :props="props" class="cursor-pointer">
|
||||||
<q-td v-for="col in props.cols" :key="col.name" :props="props">
|
<q-td
|
||||||
|
v-for="col in props.cols"
|
||||||
|
:key="col.name"
|
||||||
|
:props="props"
|
||||||
|
@click="redirectToDetail(props.row)"
|
||||||
|
>
|
||||||
<div v-if="col.name == 'no'">
|
<div v-if="col.name == 'no'">
|
||||||
{{ props.rowIndex + 1 }}
|
{{ props.rowIndex + 1 }}
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -91,6 +102,17 @@ onMounted(() => {
|
||||||
</q-td>
|
</q-td>
|
||||||
</q-tr>
|
</q-tr>
|
||||||
</template>
|
</template>
|
||||||
|
<template v-slot:pagination="scope">
|
||||||
|
<q-pagination
|
||||||
|
v-model="pagination.page"
|
||||||
|
active-color="primary"
|
||||||
|
color="dark"
|
||||||
|
size="sm"
|
||||||
|
boundary-links
|
||||||
|
direction-links
|
||||||
|
:max="scope.pagesNumber"
|
||||||
|
></q-pagination>
|
||||||
|
</template>
|
||||||
</q-table>
|
</q-table>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, onMounted, reactive } from "vue";
|
import { ref, watch, onMounted, reactive } from "vue";
|
||||||
import { useRouter, useRoute } from "vue-router";
|
import { useRouter, useRoute } from "vue-router";
|
||||||
import { VuePDF, usePDF } from "@tato30/vue-pdf";
|
import { VuePDF, usePDF } from "@tato30/vue-pdf";
|
||||||
import { useQuasar } from "quasar";
|
import { useQuasar } from "quasar";
|
||||||
|
|
@ -51,8 +51,8 @@ const fileEvaluation3Ref = ref<object | null>(null);
|
||||||
const fileEvaluation4Ref = ref<object | null>(null);
|
const fileEvaluation4Ref = ref<object | null>(null);
|
||||||
const fileEvaluation5Ref = ref<object | null>(null);
|
const fileEvaluation5Ref = ref<object | null>(null);
|
||||||
const fileEvaluation6Ref = ref<object | null>(null);
|
const fileEvaluation6Ref = ref<object | null>(null);
|
||||||
const performanceRef = ref<object | null>(null);
|
const performanceRef = ref<any>(null);
|
||||||
const performanceOwnerRef = ref<object | null>(null);
|
const performanceOwnerRef = ref<any>(null);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* function updateFormref
|
* function updateFormref
|
||||||
|
|
@ -70,6 +70,14 @@ function updateInput(val: any) {
|
||||||
fileEvaluation4Ref: fileEvaluation4Ref.value,
|
fileEvaluation4Ref: fileEvaluation4Ref.value,
|
||||||
fileEvaluation5Ref: fileEvaluation5Ref.value,
|
fileEvaluation5Ref: fileEvaluation5Ref.value,
|
||||||
fileEvaluation6Ref: fileEvaluation6Ref.value,
|
fileEvaluation6Ref: fileEvaluation6Ref.value,
|
||||||
|
downloadFile: [
|
||||||
|
downloadFile1.value,
|
||||||
|
downloadFile2.value,
|
||||||
|
downloadFile3.value,
|
||||||
|
downloadFile4.value,
|
||||||
|
downloadFile5.value,
|
||||||
|
downloadFile6.value,
|
||||||
|
],
|
||||||
};
|
};
|
||||||
emit("update:form", val, ref); // ส่งข้อมูลไปอัปเดท
|
emit("update:form", val, ref); // ส่งข้อมูลไปอัปเดท
|
||||||
}
|
}
|
||||||
|
|
@ -212,29 +220,43 @@ async function fetchPathUpload(
|
||||||
type: string,
|
type: string,
|
||||||
file: any
|
file: any
|
||||||
) {
|
) {
|
||||||
const body = {
|
performanceRef.value.validate();
|
||||||
fileList: { fileName: type, metadata: {} },
|
performanceOwnerRef.value.validate();
|
||||||
};
|
|
||||||
|
|
||||||
if (id && file) {
|
if (
|
||||||
showLoader();
|
performanceRef.value.hasError === false &&
|
||||||
await http
|
performanceOwnerRef.value.hasError === false
|
||||||
.post(config.API.loadPathDocument(volume, id), body)
|
) {
|
||||||
.then((res) => {
|
const body = {
|
||||||
const foundKey: string | undefined = Object.keys(res.data).find(
|
fileList: {
|
||||||
(key) =>
|
fileName: type,
|
||||||
res.data[key]?.fileName !== undefined &&
|
metadata: {
|
||||||
res.data[key]?.fileName !== ""
|
subject: performance.value,
|
||||||
);
|
author: performanceOwner.value,
|
||||||
foundKey && uploadfile(res.data[foundKey]?.uploadUrl, file);
|
},
|
||||||
})
|
},
|
||||||
.catch((err) => {
|
};
|
||||||
messageError($q, err);
|
|
||||||
})
|
if (id && file) {
|
||||||
.finally(() => {
|
showLoader();
|
||||||
downloadFile(type);
|
await http
|
||||||
hideLoader();
|
.post(config.API.loadPathDocument(volume, id), body)
|
||||||
});
|
.then((res) => {
|
||||||
|
const foundKey: string | undefined = Object.keys(res.data).find(
|
||||||
|
(key) =>
|
||||||
|
res.data[key]?.fileName !== undefined &&
|
||||||
|
res.data[key]?.fileName !== ""
|
||||||
|
);
|
||||||
|
foundKey && uploadfile(res.data[foundKey]?.uploadUrl, file);
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
messageError($q, err);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
downloadFile(type);
|
||||||
|
hideLoader();
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -311,6 +333,7 @@ const downloadFile3 = ref<string>("");
|
||||||
const downloadFile4 = ref<string>("");
|
const downloadFile4 = ref<string>("");
|
||||||
const downloadFile5 = ref<string>("");
|
const downloadFile5 = ref<string>("");
|
||||||
const downloadFile6 = ref<string>("");
|
const downloadFile6 = ref<string>("");
|
||||||
|
const emptyValues = ref<any>();
|
||||||
/**
|
/**
|
||||||
* function ดาวน์โหลดไฟล์
|
* function ดาวน์โหลดไฟล์
|
||||||
* @param fileName ชื่อไฟล์
|
* @param fileName ชื่อไฟล์
|
||||||
|
|
@ -346,29 +369,53 @@ async function downloadFile(fileName: string) {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
|
const ref = {
|
||||||
|
commanderFullnameRef: commanderFullnameRef.value,
|
||||||
|
commanderPositionRef: commanderPositionRef.value,
|
||||||
|
commanderAboveFullnameRef: commanderAboveFullnameRef.value,
|
||||||
|
commanderAbovePositionRef: commanderAbovePositionRef.value,
|
||||||
|
fileEvaluation1Ref: fileEvaluation1Ref.value,
|
||||||
|
fileEvaluation2Ref: fileEvaluation2Ref.value,
|
||||||
|
fileEvaluation3Ref: fileEvaluation3Ref.value,
|
||||||
|
fileEvaluation4Ref: fileEvaluation4Ref.value,
|
||||||
|
fileEvaluation5Ref: fileEvaluation5Ref.value,
|
||||||
|
fileEvaluation6Ref: fileEvaluation6Ref.value,
|
||||||
|
downloadFile: [
|
||||||
|
downloadFile1.value,
|
||||||
|
downloadFile2.value,
|
||||||
|
downloadFile3.value,
|
||||||
|
downloadFile4.value,
|
||||||
|
downloadFile5.value,
|
||||||
|
downloadFile6.value,
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
emptyValues.value = ref.downloadFile.filter((e: any) => e === "");
|
||||||
|
// if (emptyValues.value.length < 6) {
|
||||||
|
// console.log("There are empty values in the array.");
|
||||||
|
// }
|
||||||
|
|
||||||
|
emit("update:form", formCommand, ref);
|
||||||
|
|
||||||
hideLoader();
|
hideLoader();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const statusUpload = ref<boolean>(false);
|
||||||
|
function onClickCheckUploadStatus() {
|
||||||
|
statusUpload.value = true;
|
||||||
|
}
|
||||||
|
|
||||||
/**lifecycle Hooks*/
|
/**lifecycle Hooks*/
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
const ref = {
|
if (keycloak.tokenParsed != null) {
|
||||||
commanderFullnameRef: commanderFullnameRef.value,
|
performanceOwner.value = keycloak.tokenParsed.name;
|
||||||
commanderPositionRef: commanderPositionRef.value,
|
}
|
||||||
commanderAboveFullnameRef: commanderAboveFullnameRef.value,
|
|
||||||
commanderAbovePositionRef: commanderAbovePositionRef.value,
|
|
||||||
fileEvaluation1Ref: fileEvaluation1Ref.value,
|
|
||||||
fileEvaluation2Ref: fileEvaluation2Ref.value,
|
|
||||||
fileEvaluation3Ref: fileEvaluation3Ref.value,
|
|
||||||
fileEvaluation4Ref: fileEvaluation4Ref.value,
|
|
||||||
fileEvaluation5Ref: fileEvaluation5Ref.value,
|
|
||||||
fileEvaluation6Ref: fileEvaluation6Ref.value,
|
|
||||||
};
|
|
||||||
if (store.currentStep > 2) {
|
if (store.currentStep > 2) {
|
||||||
fetcheSigner(evaluateId.value);
|
fetcheSigner(evaluateId.value);
|
||||||
}
|
}
|
||||||
fetchCheckSpec(evaluateId.value);
|
fetchCheckSpec(evaluateId.value);
|
||||||
emit("update:form", formCommand, ref);
|
|
||||||
downloadFile("1-แบบพิจารณาคุณสมบัติบุคคล");
|
downloadFile("1-แบบพิจารณาคุณสมบัติบุคคล");
|
||||||
downloadFile("2-แบบแสดงรายละเอียดการเสนอผลงาน");
|
downloadFile("2-แบบแสดงรายละเอียดการเสนอผลงาน");
|
||||||
downloadFile(
|
downloadFile(
|
||||||
|
|
@ -378,6 +425,33 @@ onMounted(async () => {
|
||||||
downloadFile("5-แบบสรุปข้อมูลของผู้ขอรับการคัดเลือก (เอกสารหมายเลข 9)");
|
downloadFile("5-แบบสรุปข้อมูลของผู้ขอรับการคัดเลือก (เอกสารหมายเลข 9)");
|
||||||
downloadFile("6-ผลงานที่จะส่งประเมิน (เอกสารหมายเลข 11)");
|
downloadFile("6-ผลงานที่จะส่งประเมิน (เอกสารหมายเลข 11)");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => store.checkFileupload,
|
||||||
|
() => {
|
||||||
|
const fileEvaluationValues = [
|
||||||
|
fileEvaluation1,
|
||||||
|
fileEvaluation2,
|
||||||
|
fileEvaluation3,
|
||||||
|
fileEvaluation4,
|
||||||
|
fileEvaluation5,
|
||||||
|
fileEvaluation6,
|
||||||
|
];
|
||||||
|
const downloadFileValues = [
|
||||||
|
downloadFile1,
|
||||||
|
downloadFile2,
|
||||||
|
downloadFile3,
|
||||||
|
downloadFile4,
|
||||||
|
downloadFile5,
|
||||||
|
downloadFile6,
|
||||||
|
];
|
||||||
|
for (let i = 0; i < downloadFileValues.length; i++) {
|
||||||
|
if (downloadFileValues[i].value === "") {
|
||||||
|
fileEvaluationValues[i].value = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
@ -394,9 +468,12 @@ onMounted(async () => {
|
||||||
<!-- <div class="text-weight-medium q-py-sm">
|
<!-- <div class="text-weight-medium q-py-sm">
|
||||||
ผู้บังคับบัญชาชั้นต้น
|
ผู้บังคับบัญชาชั้นต้น
|
||||||
</div> -->
|
</div> -->
|
||||||
|
|
||||||
<div class="row col-12 q-col-gutter-md q-pa-sm">
|
<div class="row col-12 q-col-gutter-md q-pa-sm">
|
||||||
<q-input
|
<q-input
|
||||||
:readonly="store.currentStep != 2"
|
:readonly="
|
||||||
|
store.currentStep != 2 || emptyValues?.length < 6
|
||||||
|
"
|
||||||
ref="performanceRef"
|
ref="performanceRef"
|
||||||
dense
|
dense
|
||||||
class="col-xs-12 col-sm-6"
|
class="col-xs-12 col-sm-6"
|
||||||
|
|
@ -408,7 +485,9 @@ onMounted(async () => {
|
||||||
lazy-rules
|
lazy-rules
|
||||||
/>
|
/>
|
||||||
<q-input
|
<q-input
|
||||||
:readonly="store.currentStep != 2"
|
:readonly="
|
||||||
|
store.currentStep != 2 || emptyValues?.length < 6
|
||||||
|
"
|
||||||
ref="performanceOwnerRef"
|
ref="performanceOwnerRef"
|
||||||
class="col-xs-12 col-sm-6"
|
class="col-xs-12 col-sm-6"
|
||||||
dense
|
dense
|
||||||
|
|
@ -422,6 +501,14 @@ onMounted(async () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- <div align="right">
|
||||||
|
<q-btn
|
||||||
|
unelevated
|
||||||
|
label="อัปโหลไฟล์"
|
||||||
|
color="public"
|
||||||
|
@click="onClickCheckUploadStatus"
|
||||||
|
/>
|
||||||
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</q-card>
|
</q-card>
|
||||||
|
|
|
||||||
|
|
@ -61,10 +61,13 @@ async function downloadFile(url: string) {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
console.log(url);
|
||||||
|
|
||||||
const blob = new Blob([res.data]);
|
const blob = new Blob([res.data]);
|
||||||
const objectUrl = URL.createObjectURL(blob);
|
const objectUrl = URL.createObjectURL(blob);
|
||||||
|
console.log(objectUrl);
|
||||||
|
|
||||||
emit("update:file", objectUrl);
|
emit("update:file", objectUrl, url);
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
messageError($q, err);
|
messageError($q, err);
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, reactive, onMounted } from "vue";
|
import { ref, reactive, watch, onMounted } from "vue";
|
||||||
|
import keycloak from "@/plugins/keycloak";
|
||||||
import { useRoute } from "vue-router";
|
import { useRoute } from "vue-router";
|
||||||
import http from "@/plugins/http";
|
import http from "@/plugins/http";
|
||||||
import config from "@/app.config";
|
import config from "@/app.config";
|
||||||
|
|
@ -28,6 +29,11 @@ const pdfSrc = ref<any>();
|
||||||
|
|
||||||
const performance = ref<string>("");
|
const performance = ref<string>("");
|
||||||
const performanceOwner = ref<string>("");
|
const performanceOwner = ref<string>("");
|
||||||
|
const position = ref<string>("");
|
||||||
|
|
||||||
|
const performanceRef = ref<object | null>(null);
|
||||||
|
const performanceOwnerRef = ref<object | null>(null);
|
||||||
|
const positionRef = ref<object | null>(null);
|
||||||
|
|
||||||
const formCommand = reactive<FormCommand>({
|
const formCommand = reactive<FormCommand>({
|
||||||
commanderFullname: "",
|
commanderFullname: "",
|
||||||
|
|
@ -55,6 +61,7 @@ const updateInput = (value: any) => {
|
||||||
commanderAboveFullnameRef: commanderAboveFullnameRef.value,
|
commanderAboveFullnameRef: commanderAboveFullnameRef.value,
|
||||||
commanderAbovePositionRef: commanderAbovePositionRef.value,
|
commanderAbovePositionRef: commanderAbovePositionRef.value,
|
||||||
fileEvaluation1Ref: fileEvaluation1Ref.value,
|
fileEvaluation1Ref: fileEvaluation1Ref.value,
|
||||||
|
downloadFile: [downloadUrl.value],
|
||||||
};
|
};
|
||||||
emit("update:form", value, ref);
|
emit("update:form", value, ref);
|
||||||
};
|
};
|
||||||
|
|
@ -66,14 +73,14 @@ async function fetchPathUpload(
|
||||||
file: any
|
file: any
|
||||||
) {
|
) {
|
||||||
const body = {
|
const body = {
|
||||||
fileList: { fileName: type, metadata: {} },
|
fileList: {
|
||||||
|
fileName: type,
|
||||||
// "1-แบบพิจารณาคุณสมบัติบุคคล",
|
metadata: {
|
||||||
// "2-แบบแสดงรายละเอียดการเสนอผลงาน",
|
subject: performance.value,
|
||||||
// "3-แบบตรวจสอบความถูกต้องครบถ้วนของข้อมูลเพื่อประกอบการคัดเลือกบุคคล (เอกสารแบบ ก.)",
|
author: performanceOwner.value,
|
||||||
// "4-แบบประเมินคุณลักษณะบุคคล",
|
position: position.value
|
||||||
// "5-แบบสรุปข้อมูลของผู้ขอรับการคัดเลือก (เอกสารหมายเลข 9)",
|
},
|
||||||
// "6-ผลงานที่จะส่งประเมิน (เอกสารหมายเลข 11)",
|
},
|
||||||
};
|
};
|
||||||
if (id && file) {
|
if (id && file) {
|
||||||
showLoader();
|
showLoader();
|
||||||
|
|
@ -105,6 +112,7 @@ async function uploadfile(uploadUrl: string, file: any) {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
checkDoc();
|
||||||
success($q, "อัปโหลไฟล์สำเร็จ");
|
success($q, "อัปโหลไฟล์สำเร็จ");
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
|
|
@ -152,18 +160,15 @@ async function fetchCheckDate() {
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
const ref = {
|
if (keycloak.tokenParsed != null) {
|
||||||
commanderFullnameRef: commanderFullnameRef.value,
|
performanceOwner.value = keycloak.tokenParsed.name;
|
||||||
commanderPositionRef: commanderPositionRef.value,
|
}
|
||||||
commanderAboveFullnameRef: commanderAboveFullnameRef.value,
|
checkDoc();
|
||||||
commanderAbovePositionRef: commanderAbovePositionRef.value,
|
|
||||||
fileEvaluation1Ref: fileEvaluation1Ref.value,
|
|
||||||
};
|
|
||||||
if (store.currentStep > 2) {
|
if (store.currentStep > 2) {
|
||||||
fetcheSigner(evaluateId.value);
|
fetcheSigner(evaluateId.value);
|
||||||
}
|
}
|
||||||
await fetchCheckDate();
|
await fetchCheckDate();
|
||||||
emit("update:form", formCommand, ref);
|
|
||||||
// props.evaluateId && (await fetchPathUpload("เล่ม 2", props.evaluateId));
|
// props.evaluateId && (await fetchPathUpload("เล่ม 2", props.evaluateId));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -172,7 +177,7 @@ function checkDoc() {
|
||||||
showLoader();
|
showLoader();
|
||||||
http
|
http
|
||||||
.get(
|
.get(
|
||||||
config.API.loadFileDocument("เล่ม 2", store.evaluateId, "1-เอกสารเล่ม 2")
|
config.API.loadFileDocument("เล่ม 2", evaluateId.value, "1-เอกสารเล่ม 2")
|
||||||
)
|
)
|
||||||
.then((res: any) => {
|
.then((res: any) => {
|
||||||
downloadUrl.value = res.data.downloadUrl;
|
downloadUrl.value = res.data.downloadUrl;
|
||||||
|
|
@ -182,12 +187,29 @@ function checkDoc() {
|
||||||
// })
|
// })
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
hideLoader();
|
hideLoader();
|
||||||
|
const ref = {
|
||||||
|
commanderFullnameRef: commanderFullnameRef.value,
|
||||||
|
commanderPositionRef: commanderPositionRef.value,
|
||||||
|
commanderAboveFullnameRef: commanderAboveFullnameRef.value,
|
||||||
|
commanderAbovePositionRef: commanderAbovePositionRef.value,
|
||||||
|
fileEvaluation1Ref: fileEvaluation1Ref.value,
|
||||||
|
downloadFile: [downloadUrl.value],
|
||||||
|
};
|
||||||
|
|
||||||
|
emit("update:form", formCommand, ref);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
watch(
|
||||||
checkDoc();
|
() => store.checkFileupload,
|
||||||
});
|
() => {
|
||||||
|
downloadUrl.value === ""
|
||||||
|
? (fileEvaluation1.value = "")
|
||||||
|
: fileEvaluation1.value;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
// onMounted(() => {});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
@ -214,7 +236,7 @@ onMounted(() => {
|
||||||
</div> -->
|
</div> -->
|
||||||
<div class="row col-12 q-col-gutter-md q-pa-sm">
|
<div class="row col-12 q-col-gutter-md q-pa-sm">
|
||||||
<q-input
|
<q-input
|
||||||
:readonly="store.currentStep != 2"
|
:readonly="store.currentStep != 6"
|
||||||
ref="performanceRef"
|
ref="performanceRef"
|
||||||
dense
|
dense
|
||||||
class="col-xs-12 col-sm-6"
|
class="col-xs-12 col-sm-6"
|
||||||
|
|
@ -226,7 +248,7 @@ onMounted(() => {
|
||||||
lazy-rules
|
lazy-rules
|
||||||
/>
|
/>
|
||||||
<q-input
|
<q-input
|
||||||
:readonly="store.currentStep != 2"
|
:readonly="store.currentStep != 6"
|
||||||
ref="performanceOwnerRef"
|
ref="performanceOwnerRef"
|
||||||
class="col-xs-12 col-sm-6"
|
class="col-xs-12 col-sm-6"
|
||||||
dense
|
dense
|
||||||
|
|
@ -237,6 +259,20 @@ onMounted(() => {
|
||||||
:rules="[(val) => !!val || `${'กรุณากรอกเจ้าของผลงาน'}`]"
|
:rules="[(val) => !!val || `${'กรุณากรอกเจ้าของผลงาน'}`]"
|
||||||
lazy-rules
|
lazy-rules
|
||||||
/>
|
/>
|
||||||
|
<q-input
|
||||||
|
:readonly="store.currentStep != 6"
|
||||||
|
ref="positionRef"
|
||||||
|
class="col-xs-12 col-sm-6"
|
||||||
|
dense
|
||||||
|
outlined
|
||||||
|
v-model="position"
|
||||||
|
@update:model-value="updateInput(formCommand)"
|
||||||
|
label="ตำแหน่งที่ได้รับ"
|
||||||
|
:rules="[
|
||||||
|
(val) => !!val || `${'กรุณากรอกตำแหน่งที่ได้รับ'}`,
|
||||||
|
]"
|
||||||
|
lazy-rules
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@ async function downloadFile(url: string) {
|
||||||
const blob = new Blob([res.data]);
|
const blob = new Blob([res.data]);
|
||||||
const objectUrl = URL.createObjectURL(blob);
|
const objectUrl = URL.createObjectURL(blob);
|
||||||
|
|
||||||
emit("update:file", objectUrl);
|
emit("update:file", objectUrl, url);
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
messageError($q, err);
|
messageError($q, err);
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,9 @@ const props = defineProps({
|
||||||
pdfSrc: {
|
pdfSrc: {
|
||||||
type: String,
|
type: String,
|
||||||
},
|
},
|
||||||
|
urlDownloadFile: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const modalPerview = ref<boolean>(false);
|
const modalPerview = ref<boolean>(false);
|
||||||
|
|
@ -18,7 +21,14 @@ const store = useEvaluateStore();
|
||||||
<template>
|
<template>
|
||||||
<div class="col-12 row">
|
<div class="col-12 row">
|
||||||
<q-space />
|
<q-space />
|
||||||
<q-btn flat round color="primary" icon="download">
|
<q-btn
|
||||||
|
flat
|
||||||
|
round
|
||||||
|
color="primary"
|
||||||
|
icon="download"
|
||||||
|
target="_blank"
|
||||||
|
:href="props.urlDownloadFile"
|
||||||
|
>
|
||||||
<q-tooltip>ดาวน์โหลด</q-tooltip>
|
<q-tooltip>ดาวน์โหลด</q-tooltip>
|
||||||
</q-btn>
|
</q-btn>
|
||||||
<q-btn
|
<q-btn
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,9 @@ const props = defineProps({
|
||||||
pdfSrc: {
|
pdfSrc: {
|
||||||
type: String,
|
type: String,
|
||||||
},
|
},
|
||||||
|
urlDownloadFile: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
const modalPerview = ref<boolean>(false);
|
const modalPerview = ref<boolean>(false);
|
||||||
</script>
|
</script>
|
||||||
|
|
@ -15,7 +18,14 @@ const modalPerview = ref<boolean>(false);
|
||||||
<template>
|
<template>
|
||||||
<div class="col-12 row">
|
<div class="col-12 row">
|
||||||
<q-space />
|
<q-space />
|
||||||
<q-btn flat round color="primary" icon="download">
|
<q-btn
|
||||||
|
flat
|
||||||
|
round
|
||||||
|
color="primary"
|
||||||
|
icon="download"
|
||||||
|
target="_blank"
|
||||||
|
:href="props.urlDownloadFile"
|
||||||
|
>
|
||||||
<q-tooltip>ดาวน์โหลด</q-tooltip>
|
<q-tooltip>ดาวน์โหลด</q-tooltip>
|
||||||
</q-btn>
|
</q-btn>
|
||||||
<q-btn
|
<q-btn
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,10 @@
|
||||||
import { defineStore } from "pinia";
|
import { defineStore } from "pinia";
|
||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
|
|
||||||
import type { QTableProps } from "quasar";
|
import type { QTableProps } from "quasar";
|
||||||
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
|
const mixin = useCounterMixin();
|
||||||
|
const { date2Thai } = mixin;
|
||||||
|
|
||||||
export const useEvaluateStore = defineStore("evaluateStore", () => {
|
export const useEvaluateStore = defineStore("evaluateStore", () => {
|
||||||
const filterKeyword = ref<string>("");
|
const filterKeyword = ref<string>("");
|
||||||
|
|
@ -8,7 +12,20 @@ export const useEvaluateStore = defineStore("evaluateStore", () => {
|
||||||
const visibleColumns = ref<string[]>([]);
|
const visibleColumns = ref<string[]>([]);
|
||||||
const row = ref<any>();
|
const row = ref<any>();
|
||||||
|
|
||||||
|
async function fetchEvaluateList(data: any) {
|
||||||
|
const list = data.map((e: any) => ({
|
||||||
|
id: e.id,
|
||||||
|
typeparam: e.type,
|
||||||
|
type: e.type === "EXPERT" ? "ชำนาญการ" : "ชำนาญการพิเศษ",
|
||||||
|
dateSend: date2Thai(e.updatedAt),
|
||||||
|
status: convertStatus(e.step),
|
||||||
|
}));
|
||||||
|
|
||||||
|
row.value = list;
|
||||||
|
}
|
||||||
|
|
||||||
const tabMenu = ref<string>("1");
|
const tabMenu = ref<string>("1");
|
||||||
|
const checkFileupload = ref<boolean>(false);
|
||||||
const showLoadStatus = ref<boolean>(false);
|
const showLoadStatus = ref<boolean>(false);
|
||||||
const step = ref<number>(1);
|
const step = ref<number>(1);
|
||||||
const currentStep = ref<number>(1);
|
const currentStep = ref<number>(1);
|
||||||
|
|
@ -19,11 +36,34 @@ export const useEvaluateStore = defineStore("evaluateStore", () => {
|
||||||
"รอตรวจสอบคุณสมบัติ",
|
"รอตรวจสอบคุณสมบัติ",
|
||||||
"ประกาศบนเว็บไซต์",
|
"ประกาศบนเว็บไซต์",
|
||||||
"จัดเตรียมเอกสารเล่ม 2",
|
"จัดเตรียมเอกสารเล่ม 2",
|
||||||
"ตรวจสอบเอกสารเล่ม 2",
|
"รอพิจารณาผลการประเมิน 2",
|
||||||
"รอพิจารณาผล",
|
"ตรวจสอบความถูกต้องของเอกสารเล่ม 2",
|
||||||
"เสร็จสิ้น",
|
"เสร็จสิ้น",
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
function convertStatus(val: string) {
|
||||||
|
switch (val) {
|
||||||
|
case "CHECK_SPEC":
|
||||||
|
return "ตรวจสอบคุณสมบัติด้วยตนเอง";
|
||||||
|
case "PREPARE_DOC_V1":
|
||||||
|
return "จัดเตรียมเอกสารเล่ม 1";
|
||||||
|
case "CHECK_DOC_V1":
|
||||||
|
return "ตรวจสอบความถูกต้องของเอกสารเล่ม 1";
|
||||||
|
case "WAIT_CHECK_DOC_V1":
|
||||||
|
return "รอตรวจสอบคุณสมบัติ";
|
||||||
|
case "ANNOUNCE_WEB":
|
||||||
|
return "ประกาศบนเว็บไซต์";
|
||||||
|
case "PREPARE_DOC_V2":
|
||||||
|
return "จัดเตรียมเอกสารเล่ม 2";
|
||||||
|
case "WAIT_CHECK_DOC_V2":
|
||||||
|
return "รอพิจารณาผลการประเมิน 2";
|
||||||
|
case "CHECK_DOC_V2":
|
||||||
|
return "ตรวจสอบความถูกต้องของเอกสารเล่ม 2";
|
||||||
|
case "DONE":
|
||||||
|
return "เสร็จสิ้น";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const tabPanels = ref<string>("1");
|
const tabPanels = ref<string>("1");
|
||||||
|
|
||||||
const evaluateId = ref<string>("");
|
const evaluateId = ref<string>("");
|
||||||
|
|
@ -33,8 +73,10 @@ export const useEvaluateStore = defineStore("evaluateStore", () => {
|
||||||
columns,
|
columns,
|
||||||
visibleColumns,
|
visibleColumns,
|
||||||
row,
|
row,
|
||||||
|
fetchEvaluateList,
|
||||||
|
|
||||||
tabMenu,
|
tabMenu,
|
||||||
|
checkFileupload,
|
||||||
step,
|
step,
|
||||||
currentStep,
|
currentStep,
|
||||||
title,
|
title,
|
||||||
|
|
|
||||||
|
|
@ -32,11 +32,29 @@ const listMenu = ref<ListMenu[]>([
|
||||||
]);
|
]);
|
||||||
const modal = ref<boolean>(false);
|
const modal = ref<boolean>(false);
|
||||||
const menu = ref<ListMenu>();
|
const menu = ref<ListMenu>();
|
||||||
|
|
||||||
function onclickAddEvaluate(data: ListMenu) {
|
function onclickAddEvaluate(data: ListMenu) {
|
||||||
modal.value = !modal.value;
|
modal.value = !modal.value;
|
||||||
menu.value = data;
|
menu.value = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function fetchEvaluteList() {
|
||||||
|
showLoader();
|
||||||
|
await http
|
||||||
|
.get(config.API.evaluationList())
|
||||||
|
.then((res) => {
|
||||||
|
store.fetchEvaluateList(res.data.result.data);
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
messageError($q, err);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
hideLoader();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
fetchEvaluteList();
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div class="col-12 row justify-center">
|
<div class="col-12 row justify-center">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue