เพิ่ม isUploadAttachment
This commit is contained in:
parent
75ea2cc155
commit
222bc2ef9f
4 changed files with 109 additions and 46 deletions
|
|
@ -13,10 +13,7 @@ import genReportXLSX from "@/plugins/genreportxlsx";
|
||||||
import DialogHeader from "@/components/DialogHeader.vue";
|
import DialogHeader from "@/components/DialogHeader.vue";
|
||||||
|
|
||||||
import type { PDFDocumentLoadingTask } from "pdfjs-dist/types/src/display/api";
|
import type { PDFDocumentLoadingTask } from "pdfjs-dist/types/src/display/api";
|
||||||
import type {
|
import type { DataFile } from "@/modules/18_command/interface/index/Main";
|
||||||
DataFileOrder,
|
|
||||||
FormDataDetail,
|
|
||||||
} from "@/modules/18_command/interface/index/Main";
|
|
||||||
|
|
||||||
const $q = useQuasar();
|
const $q = useQuasar();
|
||||||
const { showLoader, hideLoader, messageError } = useCounterMixin();
|
const { showLoader, hideLoader, messageError } = useCounterMixin();
|
||||||
|
|
@ -34,9 +31,9 @@ const pdfSrc = ref<PDFDocumentLoadingTask | undefined>(); // ตัวแปร
|
||||||
|
|
||||||
const dialog = ref<boolean>(false); // เปิด dialog
|
const dialog = ref<boolean>(false); // เปิด dialog
|
||||||
const isLoadView = ref<boolean>(false);
|
const isLoadView = ref<boolean>(false);
|
||||||
const isAttachment = ref<boolean>(false);
|
const isUploadAttachment = ref<boolean>(false);
|
||||||
const dataCover = ref<DataFileOrder>(); //ข้อมูลไฟล์คำสั่ง
|
const dataCover = ref<DataFile>(); //ข้อมูลไฟล์คำสั่ง
|
||||||
const dataAttachment = ref<DataFileOrder>(); //ข้อมูลไฟล์แบนท้าย
|
const dataAttachment = ref<DataFile>(); //ข้อมูลไฟล์แบนท้าย
|
||||||
|
|
||||||
/** ปิด popup */
|
/** ปิด popup */
|
||||||
function closeDialog() {
|
function closeDialog() {
|
||||||
|
|
@ -69,8 +66,8 @@ async function checkAttachment() {
|
||||||
.get(config.API.commandRegister(commandId.value))
|
.get(config.API.commandRegister(commandId.value))
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
const data = res.data.result;
|
const data = res.data.result;
|
||||||
isAttachment.value = data.isAttachment;
|
isUploadAttachment.value = data.isUploadAttachment;
|
||||||
if (isAttachment.value) {
|
if (isUploadAttachment.value) {
|
||||||
promises.value.push(fetchDataCommand("attachment"));
|
promises.value.push(fetchDataCommand("attachment"));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
@ -82,19 +79,22 @@ async function checkAttachment() {
|
||||||
*/
|
*/
|
||||||
async function downloadCover(type: string) {
|
async function downloadCover(type: string) {
|
||||||
if (tab.value === "main") {
|
if (tab.value === "main") {
|
||||||
genReport(
|
window.open(dataCover.value?.downloadUrl, "_blank");
|
||||||
dataCover.value,
|
|
||||||
`คำสั่ง ${issue.value}`,
|
// genReport(
|
||||||
type,
|
// dataCover.value,
|
||||||
"?folder=command"
|
// `คำสั่ง ${issue.value}`,
|
||||||
);
|
// type,
|
||||||
|
// "?folder=command"
|
||||||
|
// );
|
||||||
} else {
|
} else {
|
||||||
genReportXLSX(
|
window.open(dataAttachment.value?.downloadUrl, "_blank");
|
||||||
dataAttachment.value,
|
// genReportXLSX(
|
||||||
`เอกสารแนบท้าย ${issue.value}`,
|
// dataAttachment.value,
|
||||||
type,
|
// `เอกสารแนบท้าย ${issue.value}`,
|
||||||
"?folder=command"
|
// type,
|
||||||
);
|
// "?folder=command"
|
||||||
|
// );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -103,30 +103,53 @@ async function downloadCover(type: string) {
|
||||||
* @param type ประเภท cover เป็นคำสั่ง attachment เป็น แบนท้าย
|
* @param type ประเภท cover เป็นคำสั่ง attachment เป็น แบนท้าย
|
||||||
*/
|
*/
|
||||||
async function fetchDataCommand(type: string) {
|
async function fetchDataCommand(type: string) {
|
||||||
|
let newType = type === "cover" ? "คำสั่ง" : "แนบท้าย";
|
||||||
await http
|
await http
|
||||||
.get(config.API.commandRegisterByType(commandId.value, type))
|
.get(
|
||||||
|
config.API.fileByFile("ระบบออกคำสั่ง", newType, commandId.value, newType)
|
||||||
|
)
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
const dataMain = await res.data.result;
|
const data = res.data;
|
||||||
|
console.log(res);
|
||||||
|
|
||||||
if (type === "cover") {
|
if (type === "cover") {
|
||||||
dataCover.value = dataMain;
|
dataCover.value = data;
|
||||||
issue.value = await res.data.result.data.commandTitle;
|
|
||||||
await fetchPDF(dataCover.value);
|
await fetchPDF(dataCover.value);
|
||||||
} else {
|
} else {
|
||||||
dataAttachment.value = dataMain;
|
dataAttachment.value = data;
|
||||||
}
|
}
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
messageError($q, e);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
hideLoader();
|
||||||
});
|
});
|
||||||
|
// await http
|
||||||
|
// .get(config.API.commandRegisterByType(commandId.value, type))
|
||||||
|
// .then(async (res) => {
|
||||||
|
// const dataMain = await res.data.result;
|
||||||
|
// if (type === "cover") {
|
||||||
|
// dataCover.value = dataMain;
|
||||||
|
// issue.value = await res.data.result.data.commandTitle;
|
||||||
|
// await fetchPDF(dataCover.value);
|
||||||
|
// } else {
|
||||||
|
// dataAttachment.value = dataMain;
|
||||||
|
// }
|
||||||
|
// });
|
||||||
}
|
}
|
||||||
|
|
||||||
/** ฟังชั่นกำหนดค่าของ PDF*/
|
/** ฟังชั่นกำหนดค่าของ PDF*/
|
||||||
async function fetchPDF(data: any, type: string = "docx?folder=command") {
|
async function fetchPDF(data: any, type: string = "docx?folder=command") {
|
||||||
isLoadView.value = false;
|
isLoadView.value = false;
|
||||||
await axios
|
axios
|
||||||
.post(config.API.reportTemplate + `/${type}`, data, {
|
.get(data.downloadUrl, {
|
||||||
headers: {
|
method: "GET",
|
||||||
accept: "application/pdf",
|
|
||||||
"content-Type": "application/json",
|
|
||||||
},
|
|
||||||
responseType: "blob",
|
responseType: "blob",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
Accept: type, // ถ้ามีการระบุเมื่ออัปโหลด
|
||||||
|
},
|
||||||
})
|
})
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
const blob = new Blob([res.data]);
|
const blob = new Blob([res.data]);
|
||||||
|
|
@ -138,10 +161,33 @@ async function fetchPDF(data: any, type: string = "docx?folder=command") {
|
||||||
isLoadView.value = true;
|
isLoadView.value = true;
|
||||||
}, 1500);
|
}, 1500);
|
||||||
})
|
})
|
||||||
.catch(async (e) => {
|
.catch((err) => {
|
||||||
messageError($q, e);
|
messageError($q, err);
|
||||||
isLoadView.value = true;
|
isLoadView.value = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// await axios
|
||||||
|
// .post(config.API.reportTemplate + `/${type}`, data, {
|
||||||
|
// headers: {
|
||||||
|
// accept: "application/pdf",
|
||||||
|
// "content-Type": "application/json",
|
||||||
|
// },
|
||||||
|
// responseType: "blob",
|
||||||
|
// })
|
||||||
|
// .then(async (res) => {
|
||||||
|
// const blob = new Blob([res.data]);
|
||||||
|
// const objectUrl = URL.createObjectURL(blob);
|
||||||
|
// const pdfData = usePDF(`${objectUrl}`);
|
||||||
|
// setTimeout(() => {
|
||||||
|
// pdfSrc.value = pdfData.pdf.value;
|
||||||
|
// numOfPages.value = pdfData.pages.value;
|
||||||
|
// isLoadView.value = true;
|
||||||
|
// }, 1500);
|
||||||
|
// })
|
||||||
|
// .catch(async (e) => {
|
||||||
|
// messageError($q, e);
|
||||||
|
// isLoadView.value = true;
|
||||||
|
// });
|
||||||
}
|
}
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
|
|
@ -191,7 +237,7 @@ watch(
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="isAttachment"
|
v-if="isUploadAttachment"
|
||||||
@click="setTab('second')"
|
@click="setTab('second')"
|
||||||
:class="getClass(tab == 'second')"
|
:class="getClass(tab == 'second')"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,7 @@ const isSignature = ref<boolean | null>(null);
|
||||||
const isDraft = ref<boolean>(false); //ทำแบบร่าง
|
const isDraft = ref<boolean>(false); //ทำแบบร่าง
|
||||||
const isSign = ref<boolean>(false); //การลงนาม
|
const isSign = ref<boolean>(false); //การลงนาม
|
||||||
const isAttachment = ref<boolean>(false); //เอกสารแนบท้าย
|
const isAttachment = ref<boolean>(false); //เอกสารแนบท้าย
|
||||||
|
const isUploadAttachment = ref<boolean>(false);
|
||||||
|
|
||||||
/** ฟังก์ชันเรียกข้อมูลสถานะคำสั่ง*/
|
/** ฟังก์ชันเรียกข้อมูลสถานะคำสั่ง*/
|
||||||
async function fetchData() {
|
async function fetchData() {
|
||||||
|
|
@ -47,7 +48,8 @@ async function fetchData() {
|
||||||
isDraft.value = data.isDraft;
|
isDraft.value = data.isDraft;
|
||||||
isSign.value = data.isSign;
|
isSign.value = data.isSign;
|
||||||
isAttachment.value = data.isAttachment;
|
isAttachment.value = data.isAttachment;
|
||||||
store.isSalary = data.isSalary
|
isUploadAttachment.value = data.isUploadAttachment;
|
||||||
|
store.isSalary = data.isSalary;
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
messageError($q, err);
|
messageError($q, err);
|
||||||
|
|
@ -211,7 +213,7 @@ onMounted(async () => {
|
||||||
v-model:step="step"
|
v-model:step="step"
|
||||||
v-model:is-draft="isDraft"
|
v-model:is-draft="isDraft"
|
||||||
v-model:is-authority="isSign"
|
v-model:is-authority="isSign"
|
||||||
v-model:is-attachment="isAttachment"
|
v-model:is-attachment="isUploadAttachment"
|
||||||
:fetch-data="fetchData"
|
:fetch-data="fetchData"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -224,7 +226,7 @@ onMounted(async () => {
|
||||||
<DigitalView
|
<DigitalView
|
||||||
v-model:step="step"
|
v-model:step="step"
|
||||||
v-model:is-draft="isDraft"
|
v-model:is-draft="isDraft"
|
||||||
v-model:is-attachment="isAttachment"
|
v-model:is-attachment="isUploadAttachment"
|
||||||
:fetch-data="fetchData"
|
:fetch-data="fetchData"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -392,14 +392,7 @@ onMounted(async () => {
|
||||||
</q-card>
|
</q-card>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div class="col-6" v-if="isAttachment || store.dataCommand">
|
||||||
class="col-6"
|
|
||||||
v-if="
|
|
||||||
isAttachment ||
|
|
||||||
(store.dataCommand &&
|
|
||||||
store.dataCommand.commandCode == 'C-PM-38')
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<q-card
|
<q-card
|
||||||
bordered
|
bordered
|
||||||
class="row col-12"
|
class="row col-12"
|
||||||
|
|
|
||||||
|
|
@ -108,6 +108,27 @@ interface FormDataDetail {
|
||||||
isAttachment: boolean;
|
isAttachment: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface DataFile {
|
||||||
|
author: string;
|
||||||
|
category: [];
|
||||||
|
createdAt: string;
|
||||||
|
createdBy: string;
|
||||||
|
description: string;
|
||||||
|
downloadUrl: string;
|
||||||
|
fileName: string;
|
||||||
|
fileSize: number;
|
||||||
|
fileType: string;
|
||||||
|
hidden: boolean;
|
||||||
|
keyword: [];
|
||||||
|
metadata: {};
|
||||||
|
path: string;
|
||||||
|
pathname: string;
|
||||||
|
title: string;
|
||||||
|
updatedAt: string;
|
||||||
|
updatedBy: string;
|
||||||
|
upload: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
export type {
|
export type {
|
||||||
Pagination,
|
Pagination,
|
||||||
DataOption,
|
DataOption,
|
||||||
|
|
@ -119,4 +140,5 @@ export type {
|
||||||
DataFileOrder,
|
DataFileOrder,
|
||||||
FormDataDetail,
|
FormDataDetail,
|
||||||
TabOptions,
|
TabOptions,
|
||||||
|
DataFile,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue