Compare commits
No commits in common. "dev" and "v1.0.10" have entirely different histories.
20 changed files with 133 additions and 343 deletions
|
|
@ -6,7 +6,7 @@ import http from "@/plugins/http";
|
||||||
import config from "@/app.config";
|
import config from "@/app.config";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useLeaveStore } from "@/modules/05_leave/store";
|
import { useLeaveStore } from "@/modules/05_leave/store";
|
||||||
import genReport from "@/plugins/genreport";
|
import { useDataStore } from "@/stores/data";
|
||||||
|
|
||||||
/** import type*/
|
/** import type*/
|
||||||
import type {
|
import type {
|
||||||
|
|
@ -16,6 +16,8 @@ import type {
|
||||||
FromCancelDetail,
|
FromCancelDetail,
|
||||||
} from "@/modules/05_leave/interface/response/leave";
|
} from "@/modules/05_leave/interface/response/leave";
|
||||||
|
|
||||||
|
import DialogHeader from "@/components/DialogHeader.vue";
|
||||||
|
import Workflow from "@/components/Workflow/Main.vue";
|
||||||
import FormLeave from "@/modules/05_leave/components/formDetail/01_SickForm.vue";
|
import FormLeave from "@/modules/05_leave/components/formDetail/01_SickForm.vue";
|
||||||
import FormChildbirth from "@/modules/05_leave/components/formDetail/04_HelpWifeBirthForm.vue";
|
import FormChildbirth from "@/modules/05_leave/components/formDetail/04_HelpWifeBirthForm.vue";
|
||||||
import FormHoliday from "@/modules/05_leave/components/formDetail/05_VacationForm.vue";
|
import FormHoliday from "@/modules/05_leave/components/formDetail/05_VacationForm.vue";
|
||||||
|
|
@ -31,6 +33,7 @@ import FormCancel from "@/modules/05_leave/components/formDetail/formCancel.vue"
|
||||||
|
|
||||||
const $q = useQuasar();
|
const $q = useQuasar();
|
||||||
const dataStore = useLeaveStore();
|
const dataStore = useLeaveStore();
|
||||||
|
const mainStore = useDataStore();
|
||||||
const { convertStatud } = dataStore;
|
const { convertStatud } = dataStore;
|
||||||
const mixin = useCounterMixin();
|
const mixin = useCounterMixin();
|
||||||
const {
|
const {
|
||||||
|
|
@ -408,28 +411,6 @@ async function onSubmit() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* ฟังก์ชันดาวน์โหลดไฟล์
|
|
||||||
* @param id รหัสการลา
|
|
||||||
* @param fileName ชื่อไฟล์
|
|
||||||
* @param type ประเภทไฟล์
|
|
||||||
*/
|
|
||||||
async function onClickDownloadFile(id: string, fileName: string, type: string) {
|
|
||||||
showLoader();
|
|
||||||
await http
|
|
||||||
.get(config.API.leaveReport(id))
|
|
||||||
.then(async (res) => {
|
|
||||||
const data = res.data.result;
|
|
||||||
await genReport(data, fileName, type);
|
|
||||||
})
|
|
||||||
.catch((err) => {
|
|
||||||
messageError($q, err);
|
|
||||||
})
|
|
||||||
.finally(() => {
|
|
||||||
hideLoader();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**** ตรวจสอบว่ามีการส่งข้อมูลเข้ามาแล้วเปิด modal */
|
/**** ตรวจสอบว่ามีการส่งข้อมูลเข้ามาแล้วเปิด modal */
|
||||||
watch(
|
watch(
|
||||||
() => props.modal,
|
() => props.modal,
|
||||||
|
|
@ -453,62 +434,10 @@ watch(
|
||||||
v-if="props.leaveStatus != 'DELETE'"
|
v-if="props.leaveStatus != 'DELETE'"
|
||||||
style="width: 900px; max-width: 80vw"
|
style="width: 900px; max-width: 80vw"
|
||||||
>
|
>
|
||||||
<q-toolbar>
|
<DialogHeader
|
||||||
<q-toolbar-title class="text-subtitle2 text-bold">
|
:tittle="`${titleMain} ${titleName}`"
|
||||||
{{ ` ${titleMain} ${titleName}` }}
|
:close="props.onClickClose"
|
||||||
<q-btn class="q-mr-sm" icon="mdi-download" round color="primary" flat>
|
|
||||||
<q-tooltip>ดาวน์โหลดไฟล์</q-tooltip>
|
|
||||||
<q-menu>
|
|
||||||
<q-list style="min-width: 100px">
|
|
||||||
<q-item
|
|
||||||
clickable
|
|
||||||
v-close-popup
|
|
||||||
@click="
|
|
||||||
onClickDownloadFile(
|
|
||||||
formData.id,
|
|
||||||
formData.leaveSubTypeName
|
|
||||||
? formData.leaveSubTypeName
|
|
||||||
: formData.leaveTypeName,
|
|
||||||
'docx',
|
|
||||||
)
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<q-item-section avatar>
|
|
||||||
<q-icon color="blue" name="mdi-file-word" />
|
|
||||||
</q-item-section>
|
|
||||||
<q-item-section>ไฟล์ .DOCX</q-item-section>
|
|
||||||
</q-item>
|
|
||||||
<q-item
|
|
||||||
clickable
|
|
||||||
v-close-popup
|
|
||||||
@click="
|
|
||||||
onClickDownloadFile(
|
|
||||||
formData.id,
|
|
||||||
formData.leaveSubTypeName
|
|
||||||
? formData.leaveSubTypeName
|
|
||||||
: formData.leaveTypeName,
|
|
||||||
'pdf',
|
|
||||||
)
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<q-item-section avatar>
|
|
||||||
<q-icon color="red" name="mdi-file-pdf" />
|
|
||||||
</q-item-section>
|
|
||||||
<q-item-section>ไฟล์ .pdf</q-item-section>
|
|
||||||
</q-item>
|
|
||||||
</q-list>
|
|
||||||
</q-menu>
|
|
||||||
</q-btn>
|
|
||||||
</q-toolbar-title>
|
|
||||||
<q-btn
|
|
||||||
icon="close"
|
|
||||||
unelevated
|
|
||||||
round
|
|
||||||
dense
|
|
||||||
@click="props.onClickClose?.()"
|
|
||||||
style="color: #ff8080; background-color: #ffdede"
|
|
||||||
/>
|
/>
|
||||||
</q-toolbar>
|
|
||||||
|
|
||||||
<q-separator />
|
<q-separator />
|
||||||
<q-card-section v-if="isLoading">
|
<q-card-section v-if="isLoading">
|
||||||
|
|
@ -651,62 +580,10 @@ watch(
|
||||||
</q-card>
|
</q-card>
|
||||||
|
|
||||||
<q-card v-if="props.leaveStatus === 'DELETE'" style="min-width: 40vw">
|
<q-card v-if="props.leaveStatus === 'DELETE'" style="min-width: 40vw">
|
||||||
<q-toolbar>
|
<DialogHeader
|
||||||
<q-toolbar-title class="text-subtitle2 text-bold">
|
:tittle="`${titleMainCancle} ${titleName}`"
|
||||||
{{ ` ${titleMainCancle} ${titleName}` }}
|
:close="props.onClickClose"
|
||||||
<q-btn class="q-mr-sm" icon="mdi-download" round color="primary" flat>
|
|
||||||
<q-tooltip>ดาวน์โหลดไฟล์</q-tooltip>
|
|
||||||
<q-menu>
|
|
||||||
<q-list style="min-width: 100px">
|
|
||||||
<q-item
|
|
||||||
clickable
|
|
||||||
v-close-popup
|
|
||||||
@click="
|
|
||||||
onClickDownloadFile(
|
|
||||||
formData.id,
|
|
||||||
formData.leaveSubTypeName
|
|
||||||
? formData.leaveSubTypeName
|
|
||||||
: formData.leaveTypeName,
|
|
||||||
'docx',
|
|
||||||
)
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<q-item-section avatar>
|
|
||||||
<q-icon color="blue" name="mdi-file-word" />
|
|
||||||
</q-item-section>
|
|
||||||
<q-item-section>ไฟล์ .DOCX</q-item-section>
|
|
||||||
</q-item>
|
|
||||||
<q-item
|
|
||||||
clickable
|
|
||||||
v-close-popup
|
|
||||||
@click="
|
|
||||||
onClickDownloadFile(
|
|
||||||
formData.id,
|
|
||||||
formData.leaveSubTypeName
|
|
||||||
? formData.leaveSubTypeName
|
|
||||||
: formData.leaveTypeName,
|
|
||||||
'pdf',
|
|
||||||
)
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<q-item-section avatar>
|
|
||||||
<q-icon color="red" name="mdi-file-pdf" />
|
|
||||||
</q-item-section>
|
|
||||||
<q-item-section>ไฟล์ .pdf</q-item-section>
|
|
||||||
</q-item>
|
|
||||||
</q-list>
|
|
||||||
</q-menu>
|
|
||||||
</q-btn>
|
|
||||||
</q-toolbar-title>
|
|
||||||
<q-btn
|
|
||||||
icon="close"
|
|
||||||
unelevated
|
|
||||||
round
|
|
||||||
dense
|
|
||||||
@click="props.onClickClose?.()"
|
|
||||||
style="color: #ff8080; background-color: #ffdede"
|
|
||||||
/>
|
/>
|
||||||
</q-toolbar>
|
|
||||||
|
|
||||||
<q-separator />
|
<q-separator />
|
||||||
<q-card-section v-if="isLoading">
|
<q-card-section v-if="isLoading">
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,6 @@ interface LeaveItem {
|
||||||
all: number;
|
all: number;
|
||||||
use: number;
|
use: number;
|
||||||
remain: number;
|
remain: number;
|
||||||
leaveCountApproveCount: number;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface MainList {
|
interface MainList {
|
||||||
|
|
|
||||||
|
|
@ -141,14 +141,12 @@ async function fetchStatsTable() {
|
||||||
value:
|
value:
|
||||||
el.leaveLimit > 0
|
el.leaveLimit > 0
|
||||||
? Math.round(
|
? Math.round(
|
||||||
(Number(el.leaveCountApprove) / Number(el.leaveLimit)) *
|
(Number(el.leaveCountApprove) / Number(el.leaveLimit)) * 100
|
||||||
100,
|
|
||||||
)
|
)
|
||||||
: 0,
|
: 0,
|
||||||
all: Number(el.leaveLimit),
|
all: Number(el.leaveLimit),
|
||||||
use: el.leaveCountApprove,
|
use: el.leaveCountApprove,
|
||||||
remain: Number(el.leaveLimit) - Number(el.leaveCountApprove),
|
remain: Number(el.leaveLimit) - Number(el.leaveCountApprove),
|
||||||
leaveCountApproveCount: el.leaveCountApproveCount,
|
|
||||||
}));
|
}));
|
||||||
});
|
});
|
||||||
stat.forEach((item) => itemPie.value.push(...item));
|
stat.forEach((item) => itemPie.value.push(...item));
|
||||||
|
|
@ -256,7 +254,7 @@ onMounted(async () => {
|
||||||
</q-knob>
|
</q-knob>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 text-center text-weight-medium">
|
<div class="col-12 text-center text-weight-medium">
|
||||||
{{ item.text }}
|
ลาพักผ่อน
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row gt-xs"><q-separator vertical /></div>
|
<div class="row gt-xs"><q-separator vertical /></div>
|
||||||
|
|
@ -264,19 +262,17 @@ onMounted(async () => {
|
||||||
<div class="col-12 row text-dark text-body2 items-center">
|
<div class="col-12 row text-dark text-body2 items-center">
|
||||||
<div class="col-12 row q-pa-xs q-px-md row">
|
<div class="col-12 row q-pa-xs q-px-md row">
|
||||||
<span class="text-grey-7 col-6">ได้รับ</span>
|
<span class="text-grey-7 col-6">ได้รับ</span>
|
||||||
<span class="text-weight-bold">{{ item.all }} วัน</span>
|
<span class="text-weight-bold">{{ item.all }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12"><q-separator /></div>
|
<div class="col-12"><q-separator /></div>
|
||||||
<div class="col-12 row q-pa-xs q-px-md">
|
<div class="col-12 row q-pa-xs q-px-md">
|
||||||
<span class="text-grey-7 col-6">ใช้ไป</span>
|
<span class="text-grey-7 col-6">ใช้ไป</span>
|
||||||
<span class="text-weight-bold">{{ item.use }} วัน </span>
|
<span class="text-weight-bold">{{ item.use }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12"><q-separator /></div>
|
<div class="col-12"><q-separator /></div>
|
||||||
<div class="col-12 row q-pa-xs q-px-md">
|
<div class="col-12 row q-pa-xs q-px-md">
|
||||||
<span class="text-grey-7 col-6">คงเหลือ</span>
|
<span class="text-grey-7 col-6">คงเหลือ</span>
|
||||||
<span class="text-weight-bold"
|
<span class="text-weight-bold">{{ item.remain }}</span>
|
||||||
>{{ item.remain }} วัน</span
|
|
||||||
>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -298,11 +294,11 @@ onMounted(async () => {
|
||||||
flat
|
flat
|
||||||
class="shadow-0 col-12 fit row items-center q-px-lg"
|
class="shadow-0 col-12 fit row items-center q-px-lg"
|
||||||
>
|
>
|
||||||
<div class="text-subtitle2 col-4">{{ item.text }}</div>
|
<div class="text-subtitle2 col-4">ลาป่วย</div>
|
||||||
<div class="text-subtitle2 col-8">
|
<div class="text-subtitle2 col-8">
|
||||||
<span class="text-grey-7 q-pr-md">ใช้ไป</span>
|
<span class="text-grey-7 q-pr-md">ใช้ไป</span>
|
||||||
<span class="text-weight-bold">{{ item.use }} วัน </span>
|
<span class="text-weight-bold">{{ item.use }}</span>
|
||||||
({{ item.leaveCountApproveCount }} ครั้ง)
|
<!-- <span class="text-grey-7 q-pl-md">ลา</span> -->
|
||||||
</div>
|
</div>
|
||||||
</q-card>
|
</q-card>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -321,11 +317,11 @@ onMounted(async () => {
|
||||||
flat
|
flat
|
||||||
class="shadow-0 col-12 fit row items-center q-px-lg"
|
class="shadow-0 col-12 fit row items-center q-px-lg"
|
||||||
>
|
>
|
||||||
<div class="text-subtitle2 col-4">{{ item.text }}</div>
|
<div class="text-subtitle2 col-4">ลากิจส่วนตัว</div>
|
||||||
<div class="text-subtitle2 col-8">
|
<div class="text-subtitle2 col-8">
|
||||||
<span class="text-grey-7 q-pr-md">ใช้ไป</span>
|
<span class="text-grey-7 q-pr-md">ใช้ไป</span>
|
||||||
<span class="text-weight-bold">{{ item.use }} วัน </span>
|
<span class="text-weight-bold">{{ item.use }}</span>
|
||||||
({{ item.leaveCountApproveCount }} ครั้ง)
|
<!-- <span class="text-grey-7 q-pl-md">ลา</span> -->
|
||||||
</div>
|
</div>
|
||||||
</q-card>
|
</q-card>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,6 @@ import http from "@/plugins/http";
|
||||||
import config from "@/app.config";
|
import config from "@/app.config";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useKpiDataStore } from "@/modules/08_KPI/store";
|
import { useKpiDataStore } from "@/modules/08_KPI/store";
|
||||||
import avatar from "@/assets/avatar_user.jpg";
|
|
||||||
|
|
||||||
import type { FormProfile } from "@/modules/08_KPI/interface/request/index";
|
import type { FormProfile } from "@/modules/08_KPI/interface/request/index";
|
||||||
import type {
|
import type {
|
||||||
|
|
@ -108,13 +107,11 @@ async function getAvatar(id: string) {
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
const data = await res.data.result;
|
const data = await res.data.result;
|
||||||
if (data.avatarName) {
|
if (data.avatarName) {
|
||||||
fetchProfile(id, data.avatarName);
|
await fetchProfile(id, data.avatarName);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
messageError($q, e);
|
messageError($q, e);
|
||||||
imgProfile.value = avatar;
|
|
||||||
store.dataEvaluation.avartar = avatar;
|
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
isLoadAvatar.value = false;
|
isLoadAvatar.value = false;
|
||||||
|
|
@ -122,16 +119,12 @@ async function getAvatar(id: string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** ดึงข้อมูล เพื่อเก็บรูปโปรไฟล์ */
|
/** ดึงข้อมูล เพื่อเก็บรูปโปรไฟล์ */
|
||||||
function fetchProfile(id: string, avatarName: string) {
|
async function fetchProfile(id: string, avatarName: string) {
|
||||||
http
|
await http
|
||||||
.get(config.API.fileByFile("ทะเบียนประวัติ", "โปรไฟล์", id, avatarName))
|
.get(config.API.fileByFile("ทะเบียนประวัติ", "โปรไฟล์", id, avatarName))
|
||||||
.then((res) => {
|
.then(async (res) => {
|
||||||
store.dataEvaluation.avartar = res.data.downloadUrl;
|
store.dataEvaluation.avartar = res.data.downloadUrl;
|
||||||
imgProfile.value = res.data.downloadUrl;
|
imgProfile.value = res.data.downloadUrl;
|
||||||
})
|
|
||||||
.catch(() => {
|
|
||||||
imgProfile.value = avatar;
|
|
||||||
store.dataEvaluation.avartar = avatar;
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -215,7 +208,7 @@ async function getOrgOp() {
|
||||||
name: `${i.prefix}${i.firstName} ${i.lastName}`,
|
name: `${i.prefix}${i.firstName} ${i.lastName}`,
|
||||||
}))
|
}))
|
||||||
.find(
|
.find(
|
||||||
(i: EvaOptionType) => i.id == store.dataEvaluation.commanderHighId,
|
(i: EvaOptionType) => i.id == store.dataEvaluation.commanderHighId
|
||||||
);
|
);
|
||||||
isLoadCommander.value = false;
|
isLoadCommander.value = false;
|
||||||
})
|
})
|
||||||
|
|
@ -232,21 +225,21 @@ function filterOption(val: string, update: Function, refData: string) {
|
||||||
case "evaluatorIdOp":
|
case "evaluatorIdOp":
|
||||||
update(() => {
|
update(() => {
|
||||||
evaluatorIdOp.value = evaluatorIdMainOp.value.filter(
|
evaluatorIdOp.value = evaluatorIdMainOp.value.filter(
|
||||||
(v: DataOptions) => v.name.indexOf(val) > -1,
|
(v: DataOptions) => v.name.indexOf(val) > -1
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case "commanderIdOp":
|
case "commanderIdOp":
|
||||||
update(() => {
|
update(() => {
|
||||||
commanderIdOp.value = commanderIdMainOp.value.filter(
|
commanderIdOp.value = commanderIdMainOp.value.filter(
|
||||||
(v: DataOptions) => v.name.indexOf(val) > -1,
|
(v: DataOptions) => v.name.indexOf(val) > -1
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case "commanderHighOp":
|
case "commanderHighOp":
|
||||||
update(() => {
|
update(() => {
|
||||||
commanderHighOp.value = commanderHighMainOp.value.filter(
|
commanderHighOp.value = commanderHighMainOp.value.filter(
|
||||||
(v: DataOptions) => v.name.indexOf(val) > -1,
|
(v: DataOptions) => v.name.indexOf(val) > -1
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
@ -285,7 +278,7 @@ function sendToEvaluatore() {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ยืนยันการส่งข้อตกลงให้ผู้ประเมินอนุมัติ",
|
"ยืนยันการส่งข้อตกลงให้ผู้ประเมินอนุมัติ",
|
||||||
"ต้องการยืนยันส่งข้อตกลงนี้ให้ผู้ประเมินอนุมัติใช่หรือไม่?",
|
"ต้องการยืนยันส่งข้อตกลงนี้ให้ผู้ประเมินอนุมัติใช่หรือไม่?"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -315,7 +308,7 @@ function sendToEvaluateEvaluatore() {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ยืนยันการส่งให้ผู้ประเมินรายงานผลสำเร็จของงาน",
|
"ยืนยันการส่งให้ผู้ประเมินรายงานผลสำเร็จของงาน",
|
||||||
"ต้องการยืนยันส่งให้ผู้ประเมินรายงานผลสำเร็จของงานใช่หรือไม่?",
|
"ต้องการยืนยันส่งให้ผู้ประเมินรายงานผลสำเร็จของงานใช่หรือไม่?"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -345,7 +338,7 @@ function requireEdit() {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ยืนยันการขอแก้ไขข้อตกลง",
|
"ยืนยันการขอแก้ไขข้อตกลง",
|
||||||
"ต้องการยืนยันการขอแก้ไขข้อตกลงนี้ใช่หรือไม่?",
|
"ต้องการยืนยันการขอแก้ไขข้อตกลงนี้ใช่หรือไม่?"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -418,7 +411,7 @@ async function goToSummary() {
|
||||||
store.excusiveIndicator2ScoreVal +
|
store.excusiveIndicator2ScoreVal +
|
||||||
store.competencyScoreVal
|
store.competencyScoreVal
|
||||||
).toFixed(2),
|
).toFixed(2),
|
||||||
},
|
}
|
||||||
)
|
)
|
||||||
.then((res) => {});
|
.then((res) => {});
|
||||||
|
|
||||||
|
|
@ -434,7 +427,7 @@ async function goToSummary() {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
"ยืนยันการส่งไปสรุปผลการประเมิน",
|
"ยืนยันการส่งไปสรุปผลการประเมิน",
|
||||||
"ต้องการยืนยันส่งไปสรุปผลการประเมินใช่หรือไม่?",
|
"ต้องการยืนยันส่งไปสรุปผลการประเมินใช่หรือไม่?"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -524,7 +517,7 @@ async function downloadReport() {
|
||||||
store.dataEvaluation.prefix +
|
store.dataEvaluation.prefix +
|
||||||
store.dataEvaluation.firstName +
|
store.dataEvaluation.firstName +
|
||||||
" " +
|
" " +
|
||||||
store.dataEvaluation.lastName,
|
store.dataEvaluation.lastName
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
|
|
@ -563,7 +556,7 @@ async function clickUpload(file: any) {
|
||||||
const foundKey: string | undefined = Object.keys(res.data).find(
|
const foundKey: string | undefined = Object.keys(res.data).find(
|
||||||
(key) =>
|
(key) =>
|
||||||
res.data[key]?.fileName !== undefined &&
|
res.data[key]?.fileName !== undefined &&
|
||||||
res.data[key]?.fileName !== "",
|
res.data[key]?.fileName !== ""
|
||||||
);
|
);
|
||||||
foundKey &&
|
foundKey &&
|
||||||
uploadFileDoc(res.data[foundKey]?.uploadUrl, fileUpload.value);
|
uploadFileDoc(res.data[foundKey]?.uploadUrl, fileUpload.value);
|
||||||
|
|
@ -573,7 +566,7 @@ async function clickUpload(file: any) {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
"ยืนยันการอัปโหลดไฟล์",
|
"ยืนยันการอัปโหลดไฟล์",
|
||||||
"ต้องการยืนยันการอัปโหลดไฟล์นี้หรือไม่ ?",
|
"ต้องการยืนยันการอัปโหลดไฟล์นี้หรือไม่ ?"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -630,7 +623,7 @@ function deleteFile(fileName: string) {
|
||||||
showLoader();
|
showLoader();
|
||||||
http
|
http
|
||||||
.delete(
|
.delete(
|
||||||
config.API.file("แบบกำหนดข้อตกลง", "KPI", id.value) + `/${fileName}`,
|
config.API.file("แบบกำหนดข้อตกลง", "KPI", id.value) + `/${fileName}`
|
||||||
)
|
)
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
messageError($q, e);
|
messageError($q, e);
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useDataStore } from "@/stores/data";
|
import { useDataStore } from "@/stores/data";
|
||||||
import { downloadBlobFile } from "@/modules/10_registry/utils/downloadFile";
|
|
||||||
import http from "@/plugins/http";
|
import http from "@/plugins/http";
|
||||||
import config from "@/app.config";
|
import config from "@/app.config";
|
||||||
|
|
||||||
|
|
@ -137,11 +136,23 @@ async function onDownloadFile(id: string, profileId: string) {
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
|
// const data = res.data.downloadUrl;
|
||||||
|
// window.open(data, "_blank");
|
||||||
|
console.log(res.data);
|
||||||
|
|
||||||
const downloadUrl = res.data.downloadUrl;
|
const downloadUrl = res.data.downloadUrl;
|
||||||
await downloadBlobFile({
|
const response = await fetch(downloadUrl);
|
||||||
downloadUrl: downloadUrl,
|
const blob = await response.blob();
|
||||||
fileName: `ประวัติการเปลี่ยนชื่อ-นามสกุล`,
|
const url = URL.createObjectURL(blob);
|
||||||
});
|
const link = document.createElement("a");
|
||||||
|
link.href = url;
|
||||||
|
link.download = `ประวัติการเปลี่ยนชื่อ-นามสกุล_`;
|
||||||
|
document.body.appendChild(link);
|
||||||
|
link.click();
|
||||||
|
setTimeout(() => {
|
||||||
|
document.body.removeChild(link);
|
||||||
|
URL.revokeObjectURL(url);
|
||||||
|
}, 100);
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
messageError($q, err);
|
messageError($q, err);
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,6 @@ import http from "@/plugins/http";
|
||||||
import config from "@/app.config";
|
import config from "@/app.config";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useDataStore } from "@/stores/data";
|
import { useDataStore } from "@/stores/data";
|
||||||
import { downloadBlobFile } from "@/modules/10_registry/utils/downloadFile";
|
|
||||||
|
|
||||||
/** import type */
|
/** import type */
|
||||||
import type { AbilityRows } from "@/modules/10_registry/interface/index/Main";
|
import type { AbilityRows } from "@/modules/10_registry/interface/index/Main";
|
||||||
|
|
@ -241,7 +240,7 @@ function onSearch() {
|
||||||
rows.value = onSearchDataTable(
|
rows.value = onSearchDataTable(
|
||||||
filter.value,
|
filter.value,
|
||||||
rowsData.value,
|
rowsData.value,
|
||||||
columns.value ? columns.value : [],
|
columns.value ? columns.value : []
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -259,15 +258,12 @@ async function onDownloadFile(id: string, profileId: string) {
|
||||||
"เอกสารความสามารถพิเศษ",
|
"เอกสารความสามารถพิเศษ",
|
||||||
profileId,
|
profileId,
|
||||||
id,
|
id,
|
||||||
"เอกสารหลักฐาน",
|
"เอกสารหลักฐาน"
|
||||||
),
|
)
|
||||||
)
|
)
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
const downloadUrl = res.data.downloadUrl;
|
const data = res.data;
|
||||||
await downloadBlobFile({
|
window.open(data.downloadUrl, "_blank");
|
||||||
downloadUrl: downloadUrl,
|
|
||||||
fileName: `เอกสารความสามารถพิเศษ`,
|
|
||||||
});
|
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
messageError($q, err);
|
messageError($q, err);
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ import config from "@/app.config";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useDataStore } from "@/stores/data";
|
import { useDataStore } from "@/stores/data";
|
||||||
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
||||||
import { downloadBlobFile } from "@/modules/10_registry/utils/downloadFile";
|
|
||||||
|
|
||||||
import type { DisciplineDetail } from "@/modules/10_registry/interface/index/Main";
|
import type { DisciplineDetail } from "@/modules/10_registry/interface/index/Main";
|
||||||
|
|
||||||
|
|
@ -195,11 +194,8 @@ async function getHistory() {
|
||||||
async function onDownloadFile(id: string, profileId: string) {
|
async function onDownloadFile(id: string, profileId: string) {
|
||||||
showLoader();
|
showLoader();
|
||||||
try {
|
try {
|
||||||
const res = await getPathUploadFlie(fileGroup.value, profileId, id);
|
const data = await getPathUploadFlie(fileGroup.value, profileId, id);
|
||||||
await downloadBlobFile({
|
window.open(data.downloadUrl, "_blank");
|
||||||
downloadUrl: res.downloadUrl,
|
|
||||||
fileName: `เอกสารวินัย`,
|
|
||||||
});
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
messageError($q, e);
|
messageError($q, e);
|
||||||
} finally {
|
} finally {
|
||||||
|
|
@ -212,7 +208,7 @@ function onSearch() {
|
||||||
rows.value = onSearchDataTable(
|
rows.value = onSearchDataTable(
|
||||||
filter.value,
|
filter.value,
|
||||||
rowsData.value,
|
rowsData.value,
|
||||||
columns.value ? columns.value : [],
|
columns.value ? columns.value : []
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ import config from "@/app.config";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useDataStore } from "@/stores/data";
|
import { useDataStore } from "@/stores/data";
|
||||||
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
||||||
import { downloadBlobFile } from "@/modules/10_registry/utils/downloadFile";
|
|
||||||
|
|
||||||
import type { DutyFormType } from "@/modules/10_registry/interface/index/Main";
|
import type { DutyFormType } from "@/modules/10_registry/interface/index/Main";
|
||||||
|
|
||||||
|
|
@ -298,11 +297,8 @@ async function getHistory() {
|
||||||
async function onDownloadFile(id: string, profileId: string) {
|
async function onDownloadFile(id: string, profileId: string) {
|
||||||
showLoader();
|
showLoader();
|
||||||
try {
|
try {
|
||||||
const res = await getPathUploadFlie(fileGroup.value, profileId, id);
|
const data = await getPathUploadFlie(fileGroup.value, profileId, id);
|
||||||
await downloadBlobFile({
|
window.open(data.downloadUrl, "_blank");
|
||||||
downloadUrl: res.downloadUrl,
|
|
||||||
fileName: `เอกสารปฏิบัติราชการพิเศษ`,
|
|
||||||
});
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
messageError($q, e);
|
messageError($q, e);
|
||||||
} finally {
|
} finally {
|
||||||
|
|
@ -315,7 +311,7 @@ function onSearch() {
|
||||||
rows.value = onSearchDataTable(
|
rows.value = onSearchDataTable(
|
||||||
filter.value,
|
filter.value,
|
||||||
rowsData.value,
|
rowsData.value,
|
||||||
columns.value ? columns.value : [],
|
columns.value ? columns.value : []
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,6 @@ import http from "@/plugins/http";
|
||||||
import config from "@/app.config";
|
import config from "@/app.config";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useDataStore } from "@/stores/data";
|
import { useDataStore } from "@/stores/data";
|
||||||
import { downloadBlobFile } from "@/modules/10_registry/utils/downloadFile";
|
|
||||||
|
|
||||||
import type { DutyFormType } from "@/modules/10_registry/interface/index/Main";
|
import type { DutyFormType } from "@/modules/10_registry/interface/index/Main";
|
||||||
|
|
||||||
|
|
@ -303,15 +302,12 @@ async function onDownloadFile(id: string, profileId: string) {
|
||||||
"ช่วยราชการ",
|
"ช่วยราชการ",
|
||||||
profileId,
|
profileId,
|
||||||
id,
|
id,
|
||||||
"เอกสารหลักฐาน",
|
"เอกสารหลักฐาน"
|
||||||
),
|
)
|
||||||
)
|
)
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
const downloadUrl = res.data.downloadUrl;
|
const data = res.data;
|
||||||
await downloadBlobFile({
|
window.open(data.downloadUrl, "_blank");
|
||||||
downloadUrl: downloadUrl,
|
|
||||||
fileName: `เอกสารช่วยราชการ`,
|
|
||||||
});
|
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
messageError($q, err);
|
messageError($q, err);
|
||||||
|
|
@ -326,7 +322,7 @@ function onSearch() {
|
||||||
rows.value = onSearchDataTable(
|
rows.value = onSearchDataTable(
|
||||||
filter.value,
|
filter.value,
|
||||||
rowsData.value,
|
rowsData.value,
|
||||||
columns.value ? columns.value : [],
|
columns.value ? columns.value : []
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ import config from "@/app.config";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useDataStore } from "@/stores/data";
|
import { useDataStore } from "@/stores/data";
|
||||||
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
||||||
import { downloadBlobFile } from "@/modules/10_registry/utils/downloadFile";
|
|
||||||
|
|
||||||
import type { NopaidFormType } from "@/modules/10_registry/interface/index/Main";
|
import type { NopaidFormType } from "@/modules/10_registry/interface/index/Main";
|
||||||
|
|
||||||
|
|
@ -256,7 +255,7 @@ async function getHistory() {
|
||||||
rowsHistoryData.value = [];
|
rowsHistoryData.value = [];
|
||||||
await http
|
await http
|
||||||
.get(
|
.get(
|
||||||
config.API.dataUserSalaryNopaidHistoryByType(link.value, idByRow.value),
|
config.API.dataUserSalaryNopaidHistoryByType(link.value, idByRow.value)
|
||||||
)
|
)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
const data = res.data.result;
|
const data = res.data.result;
|
||||||
|
|
@ -279,12 +278,8 @@ async function getHistory() {
|
||||||
async function onDownloadFile(id: string, profileId: string) {
|
async function onDownloadFile(id: string, profileId: string) {
|
||||||
showLoader();
|
showLoader();
|
||||||
try {
|
try {
|
||||||
const res = await getPathUploadFlie(fileGroup.value, profileId, id);
|
const data = await getPathUploadFlie(fileGroup.value, profileId, id);
|
||||||
const downloadUrl = res.downloadUrl;
|
window.open(data.downloadUrl, "_blank");
|
||||||
await downloadBlobFile({
|
|
||||||
downloadUrl: downloadUrl,
|
|
||||||
fileName: `บันทึกวันที่ไม่ได้รับ${salaryText.value}ฯ`,
|
|
||||||
});
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
messageError($q, e);
|
messageError($q, e);
|
||||||
} finally {
|
} finally {
|
||||||
|
|
@ -297,7 +292,7 @@ function onSearch() {
|
||||||
rows.value = onSearchDataTable(
|
rows.value = onSearchDataTable(
|
||||||
filter.value,
|
filter.value,
|
||||||
rowsData.value,
|
rowsData.value,
|
||||||
columns.value ? columns.value : [],
|
columns.value ? columns.value : []
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ import config from "@/app.config";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useDataStore } from "@/stores/data";
|
import { useDataStore } from "@/stores/data";
|
||||||
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
||||||
import { downloadBlobFile } from "@/modules/10_registry/utils/downloadFile";
|
|
||||||
|
|
||||||
import type { CertificateDetail } from "@/modules/10_registry/interface/index/Main";
|
import type { CertificateDetail } from "@/modules/10_registry/interface/index/Main";
|
||||||
|
|
||||||
|
|
@ -254,8 +253,8 @@ async function getHistory() {
|
||||||
config.API.dataUserCertificateHistoryByType(
|
config.API.dataUserCertificateHistoryByType(
|
||||||
link.value,
|
link.value,
|
||||||
"certificate",
|
"certificate",
|
||||||
idByRow.value,
|
idByRow.value
|
||||||
),
|
)
|
||||||
)
|
)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
const data = res.data.result;
|
const data = res.data.result;
|
||||||
|
|
@ -279,10 +278,7 @@ async function onDownloadFile(id: string, profileId: string) {
|
||||||
showLoader();
|
showLoader();
|
||||||
try {
|
try {
|
||||||
const data = await getPathUploadFlie(fileGroup.value, profileId, id);
|
const data = await getPathUploadFlie(fileGroup.value, profileId, id);
|
||||||
await downloadBlobFile({
|
window.open(data.downloadUrl, "_blank");
|
||||||
downloadUrl: data.downloadUrl,
|
|
||||||
fileName: `เอกสารใบอนุญาตประกอบวิชาชีพ`,
|
|
||||||
});
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
messageError($q, error);
|
messageError($q, error);
|
||||||
} finally {
|
} finally {
|
||||||
|
|
@ -295,7 +291,7 @@ function onSearch() {
|
||||||
rows.value = onSearchDataTable(
|
rows.value = onSearchDataTable(
|
||||||
filter.value,
|
filter.value,
|
||||||
rowsData.value,
|
rowsData.value,
|
||||||
columns.value ? columns.value : [],
|
columns.value ? columns.value : []
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ import config from "@/app.config";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useDataStore } from "@/stores/data";
|
import { useDataStore } from "@/stores/data";
|
||||||
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
||||||
import { downloadBlobFile } from "@/modules/10_registry/utils/downloadFile";
|
|
||||||
|
|
||||||
import type { InsigniaFormType } from "@/modules/10_registry/interface/index/Main";
|
import type { InsigniaFormType } from "@/modules/10_registry/interface/index/Main";
|
||||||
|
|
||||||
|
|
@ -470,8 +469,8 @@ async function getHistory() {
|
||||||
config.API.dataUserCertificateHistoryByType(
|
config.API.dataUserCertificateHistoryByType(
|
||||||
link.value,
|
link.value,
|
||||||
"insignia",
|
"insignia",
|
||||||
idByRow.value,
|
idByRow.value
|
||||||
),
|
)
|
||||||
)
|
)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
const data = res.data.result;
|
const data = res.data.result;
|
||||||
|
|
@ -495,10 +494,7 @@ async function onDownloadFile(id: string, profileId: string) {
|
||||||
showLoader();
|
showLoader();
|
||||||
try {
|
try {
|
||||||
const data = await getPathUploadFlie(fileGroup.value, profileId, id);
|
const data = await getPathUploadFlie(fileGroup.value, profileId, id);
|
||||||
await downloadBlobFile({
|
window.open(data.downloadUrl, "_blank");
|
||||||
downloadUrl: data.downloadUrl,
|
|
||||||
fileName: `เอกสารเครื่องราชอิสริยาภรณ์`,
|
|
||||||
});
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
messageError($q, error);
|
messageError($q, error);
|
||||||
} finally {
|
} finally {
|
||||||
|
|
@ -511,7 +507,7 @@ function onSearch() {
|
||||||
rows.value = onSearchDataTable(
|
rows.value = onSearchDataTable(
|
||||||
filter.value,
|
filter.value,
|
||||||
rowsData.value,
|
rowsData.value,
|
||||||
columns.value ? columns.value : [],
|
columns.value ? columns.value : []
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -651,6 +647,7 @@ onMounted(async () => {
|
||||||
dense
|
dense
|
||||||
round
|
round
|
||||||
size="14px"
|
size="14px"
|
||||||
|
class="absolute_button"
|
||||||
@click="onHistory(props.row.id)"
|
@click="onHistory(props.row.id)"
|
||||||
>
|
>
|
||||||
<q-tooltip>ประวัติแก้ไขเครื่องราชอิสริยาภรณ์</q-tooltip>
|
<q-tooltip>ประวัติแก้ไขเครื่องราชอิสริยาภรณ์</q-tooltip>
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ import config from "@/app.config";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useDataStore } from "@/stores/data";
|
import { useDataStore } from "@/stores/data";
|
||||||
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
import { useRegistryDataStore } from "@/modules/10_registry/store/Main";
|
||||||
import { downloadBlobFile } from "@/modules/10_registry/utils/downloadFile";
|
|
||||||
|
|
||||||
import type { HonorFormData } from "@/modules/10_registry/interface/index/Main";
|
import type { HonorFormData } from "@/modules/10_registry/interface/index/Main";
|
||||||
|
|
||||||
|
|
@ -279,10 +278,7 @@ async function onDownloadFile(id: string, profileId: string) {
|
||||||
showLoader();
|
showLoader();
|
||||||
try {
|
try {
|
||||||
const data = await getPathUploadFlie(fileGroup.value, profileId, id);
|
const data = await getPathUploadFlie(fileGroup.value, profileId, id);
|
||||||
await downloadBlobFile({
|
window.open(data.downloadUrl, "_blank");
|
||||||
downloadUrl: data.downloadUrl,
|
|
||||||
fileName: `เอกสารประกาศเกียรติคุณ`,
|
|
||||||
});
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
messageError($q, error);
|
messageError($q, error);
|
||||||
} finally {
|
} finally {
|
||||||
|
|
@ -295,7 +291,7 @@ function onSearch() {
|
||||||
rows.value = onSearchDataTable(
|
rows.value = onSearchDataTable(
|
||||||
filter.value,
|
filter.value,
|
||||||
rowsData.value,
|
rowsData.value,
|
||||||
columns.value ? columns.value : [],
|
columns.value ? columns.value : []
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -433,6 +429,7 @@ onMounted(async () => {
|
||||||
dense
|
dense
|
||||||
round
|
round
|
||||||
size="14px"
|
size="14px"
|
||||||
|
class="absolute_button"
|
||||||
@click="onHistory(props.row.id)"
|
@click="onHistory(props.row.id)"
|
||||||
>
|
>
|
||||||
<q-tooltip>ประวัติแก้ไขประกาศเกียรติคุณ</q-tooltip>
|
<q-tooltip>ประวัติแก้ไขประกาศเกียรติคุณ</q-tooltip>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,6 @@ import { ref, onMounted, watch } from "vue";
|
||||||
import http from "@/plugins/http";
|
import http from "@/plugins/http";
|
||||||
import config from "@/app.config";
|
import config from "@/app.config";
|
||||||
import { useRegistryInFormationStore } from "@/modules/10_registry/store/registry";
|
import { useRegistryInFormationStore } from "@/modules/10_registry/store/registry";
|
||||||
import { downloadBlobFile } from "@/modules/10_registry/utils/downloadFile";
|
|
||||||
|
|
||||||
import type { FileFormType } from "@/modules/10_registry/interface/index/Main";
|
import type { FileFormType } from "@/modules/10_registry/interface/index/Main";
|
||||||
|
|
||||||
|
|
@ -58,10 +57,18 @@ async function downloadFile(fileName: string) {
|
||||||
)
|
)
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
const downloadUrl = res.data.downloadUrl;
|
const downloadUrl = res.data.downloadUrl;
|
||||||
await downloadBlobFile({
|
const response = await fetch(downloadUrl);
|
||||||
downloadUrl: downloadUrl,
|
const blob = await response.blob();
|
||||||
fileName: fileName,
|
const url = URL.createObjectURL(blob);
|
||||||
});
|
const link = document.createElement("a");
|
||||||
|
link.href = url;
|
||||||
|
link.download = fileName;
|
||||||
|
document.body.appendChild(link);
|
||||||
|
link.click();
|
||||||
|
setTimeout(() => {
|
||||||
|
document.body.removeChild(link);
|
||||||
|
URL.revokeObjectURL(url);
|
||||||
|
}, 100);
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
messageError($q, e);
|
messageError($q, e);
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,6 @@ import { useQuasar } from "quasar";
|
||||||
import http from "@/plugins/http";
|
import http from "@/plugins/http";
|
||||||
import config from "@/app.config";
|
import config from "@/app.config";
|
||||||
import { useRegistryInFormationStore } from "@/modules/10_registry/store/registry";
|
import { useRegistryInFormationStore } from "@/modules/10_registry/store/registry";
|
||||||
import { downloadBlobFile } from "@/modules/10_registry/utils/downloadFile";
|
|
||||||
|
|
||||||
import type { FileFormType } from "@/modules/10_registry/interface/index/Main";
|
import type { FileFormType } from "@/modules/10_registry/interface/index/Main";
|
||||||
|
|
||||||
|
|
@ -58,10 +57,18 @@ async function downloadFile(fileName: string) {
|
||||||
)
|
)
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
const downloadUrl = res.data.downloadUrl;
|
const downloadUrl = res.data.downloadUrl;
|
||||||
await downloadBlobFile({
|
const response = await fetch(downloadUrl);
|
||||||
downloadUrl: downloadUrl,
|
const blob = await response.blob();
|
||||||
fileName: fileName,
|
const url = URL.createObjectURL(blob);
|
||||||
});
|
const link = document.createElement("a");
|
||||||
|
link.href = url;
|
||||||
|
link.download = fileName;
|
||||||
|
document.body.appendChild(link);
|
||||||
|
link.click();
|
||||||
|
setTimeout(() => {
|
||||||
|
document.body.removeChild(link);
|
||||||
|
URL.revokeObjectURL(url);
|
||||||
|
}, 100);
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
messageError($q, e);
|
messageError($q, e);
|
||||||
|
|
|
||||||
|
|
@ -1,60 +0,0 @@
|
||||||
export interface DownloadFileOptions {
|
|
||||||
downloadUrl: string;
|
|
||||||
fileName: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
const isMobile =
|
|
||||||
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
|
|
||||||
navigator.userAgent,
|
|
||||||
);
|
|
||||||
|
|
||||||
export async function downloadBlobFile({
|
|
||||||
downloadUrl,
|
|
||||||
fileName,
|
|
||||||
}: DownloadFileOptions): Promise<void> {
|
|
||||||
// Use window.open for desktop, blob download for mobile
|
|
||||||
if (!isMobile) {
|
|
||||||
window.open(downloadUrl, "_blank");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const response = await fetch(downloadUrl);
|
|
||||||
const blob = await response.blob();
|
|
||||||
|
|
||||||
const contentType: string | null = response.headers.get("Content-Type");
|
|
||||||
|
|
||||||
const extensionMap: Record<string, string> = {
|
|
||||||
"application/pdf": "pdf",
|
|
||||||
"image/jpeg": "jpg",
|
|
||||||
"image/png": "png",
|
|
||||||
"image/gif": "gif",
|
|
||||||
"application/zip": "zip",
|
|
||||||
"application/vnd.openxmlformats-officedocument.wordprocessingml.document":
|
|
||||||
"docx",
|
|
||||||
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": "xlsx",
|
|
||||||
};
|
|
||||||
|
|
||||||
let extension = contentType ? extensionMap[contentType] : undefined;
|
|
||||||
|
|
||||||
if (!extension) {
|
|
||||||
const urlWithoutQuery = downloadUrl.split("?")[0];
|
|
||||||
extension = urlWithoutQuery.includes(".")
|
|
||||||
? urlWithoutQuery.split(".").pop()
|
|
||||||
: "pdf";
|
|
||||||
}
|
|
||||||
|
|
||||||
const blobForDownload = new Blob([blob], {
|
|
||||||
type: "application/octet-stream",
|
|
||||||
});
|
|
||||||
const url = URL.createObjectURL(blobForDownload);
|
|
||||||
const link = document.createElement("a");
|
|
||||||
link.href = url;
|
|
||||||
const downloadFileName = fileName.includes(".") ? fileName : `${fileName}.${extension}`;
|
|
||||||
link.download = downloadFileName;
|
|
||||||
document.body.appendChild(link);
|
|
||||||
link.click();
|
|
||||||
setTimeout(() => {
|
|
||||||
document.body.removeChild(link);
|
|
||||||
URL.revokeObjectURL(url);
|
|
||||||
}, 100);
|
|
||||||
}
|
|
||||||
|
|
@ -151,7 +151,6 @@ async function getAvatar(id: string) {
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
messageError($q, e);
|
messageError($q, e);
|
||||||
profileImg.value = avatar;
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -169,15 +168,14 @@ function getList(id: string) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function getImg(id: string, pathName: string) {
|
async function getImg(id: string, pathName: string) {
|
||||||
http
|
await http
|
||||||
.get(config.API.fileByFile("ทะเบียนประวัติ", "โปรไฟล์", id, pathName))
|
.get(config.API.fileByFile("ทะเบียนประวัติ", "โปรไฟล์", id, pathName))
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
profileImg.value = res.data.downloadUrl;
|
profileImg.value = res.data.downloadUrl;
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
profileImg.value = avatar;
|
messageError($q, e);
|
||||||
// messageError($q, e);
|
|
||||||
hideLoader();
|
hideLoader();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
@ -190,7 +188,7 @@ function onSearch() {
|
||||||
rows.value = onSearchDataTable(
|
rows.value = onSearchDataTable(
|
||||||
filter.value,
|
filter.value,
|
||||||
rowsData.value,
|
rowsData.value,
|
||||||
columns.value ? columns.value : [],
|
columns.value ? columns.value : []
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ async function genReport(data: any, fileName: string, type: string = "docx") {
|
||||||
},
|
},
|
||||||
responseType: "arraybuffer",
|
responseType: "arraybuffer",
|
||||||
})
|
})
|
||||||
.then(async (res) => {
|
.then((res) => {
|
||||||
const responseData = res.data;
|
const responseData = res.data;
|
||||||
if (responseData) {
|
if (responseData) {
|
||||||
const mimeType =
|
const mimeType =
|
||||||
|
|
@ -32,11 +32,13 @@ async function genReport(data: any, fileName: string, type: string = "docx") {
|
||||||
|
|
||||||
const baseName = fileName.trim();
|
const baseName = fileName.trim();
|
||||||
const extension = type === "docx" ? "docx" : "pdf";
|
const extension = type === "docx" ? "docx" : "pdf";
|
||||||
|
|
||||||
const link = document.createElement("a");
|
const link = document.createElement("a");
|
||||||
link.href = url;
|
link.href = url;
|
||||||
link.download = `${baseName}.${extension}`;
|
link.download = `${baseName}.${extension}`;
|
||||||
document.body.appendChild(link);
|
document.body.appendChild(link);
|
||||||
link.click();
|
link.click();
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
document.body.removeChild(link);
|
document.body.removeChild(link);
|
||||||
URL.revokeObjectURL(url);
|
URL.revokeObjectURL(url);
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ export const useCounterMixin = defineStore("mixin", () => {
|
||||||
const calAge = (
|
const calAge = (
|
||||||
srcDate: Date,
|
srcDate: Date,
|
||||||
birthCal: Date = new Date(),
|
birthCal: Date = new Date(),
|
||||||
eng: boolean = false,
|
eng: boolean = false
|
||||||
) => {
|
) => {
|
||||||
const year = eng ? "years" : "ปี";
|
const year = eng ? "years" : "ปี";
|
||||||
const month = eng ? "months" : "เดือน";
|
const month = eng ? "months" : "เดือน";
|
||||||
|
|
@ -82,7 +82,7 @@ export const useCounterMixin = defineStore("mixin", () => {
|
||||||
function date2Thai(
|
function date2Thai(
|
||||||
srcDate: Date | null,
|
srcDate: Date | null,
|
||||||
isFullMonth: boolean = false,
|
isFullMonth: boolean = false,
|
||||||
isTime: boolean = false,
|
isTime: boolean = false
|
||||||
) {
|
) {
|
||||||
if (srcDate == null || !moment(srcDate).isValid()) return "";
|
if (srcDate == null || !moment(srcDate).isValid()) return "";
|
||||||
|
|
||||||
|
|
@ -98,7 +98,7 @@ export const useCounterMixin = defineStore("mixin", () => {
|
||||||
function dateThai(
|
function dateThai(
|
||||||
srcDate: Date,
|
srcDate: Date,
|
||||||
isFullMonth: boolean = true,
|
isFullMonth: boolean = true,
|
||||||
isTime: boolean = false,
|
isTime: boolean = false
|
||||||
) {
|
) {
|
||||||
if (srcDate == null) {
|
if (srcDate == null) {
|
||||||
return null;
|
return null;
|
||||||
|
|
@ -490,7 +490,7 @@ export const useCounterMixin = defineStore("mixin", () => {
|
||||||
color: string | undefined,
|
color: string | undefined,
|
||||||
ok?: Function | undefined,
|
ok?: Function | undefined,
|
||||||
cancel?: Function | undefined,
|
cancel?: Function | undefined,
|
||||||
onlycancel: Boolean = false,
|
onlycancel: Boolean = false
|
||||||
) => {
|
) => {
|
||||||
q.dialog({
|
q.dialog({
|
||||||
component: CustomComponent,
|
component: CustomComponent,
|
||||||
|
|
@ -529,7 +529,7 @@ export const useCounterMixin = defineStore("mixin", () => {
|
||||||
title: string,
|
title: string,
|
||||||
message: string,
|
message: string,
|
||||||
ok: Function,
|
ok: Function,
|
||||||
cancel?: Function,
|
cancel?: Function
|
||||||
) {
|
) {
|
||||||
q.dialog({
|
q.dialog({
|
||||||
title: `<span class="text-red">${title}</span>`,
|
title: `<span class="text-red">${title}</span>`,
|
||||||
|
|
@ -559,7 +559,7 @@ export const useCounterMixin = defineStore("mixin", () => {
|
||||||
title: string,
|
title: string,
|
||||||
message: string,
|
message: string,
|
||||||
ok: Function,
|
ok: Function,
|
||||||
cancel?: Function,
|
cancel?: Function
|
||||||
) {
|
) {
|
||||||
q.dialog({
|
q.dialog({
|
||||||
title: `<span class="text-primary">${title}</span>`,
|
title: `<span class="text-primary">${title}</span>`,
|
||||||
|
|
@ -795,7 +795,7 @@ export const useCounterMixin = defineStore("mixin", () => {
|
||||||
ok?: Function,
|
ok?: Function,
|
||||||
title?: string, // ถ้ามี cancel action ใส่เป็น null
|
title?: string, // ถ้ามี cancel action ใส่เป็น null
|
||||||
desc?: string, // ถ้ามี cancel action ใส่เป็น null
|
desc?: string, // ถ้ามี cancel action ใส่เป็น null
|
||||||
cancel?: Function,
|
cancel?: Function
|
||||||
) => {
|
) => {
|
||||||
q.dialog({
|
q.dialog({
|
||||||
component: CustomComponent,
|
component: CustomComponent,
|
||||||
|
|
@ -824,7 +824,7 @@ export const useCounterMixin = defineStore("mixin", () => {
|
||||||
ok?: Function,
|
ok?: Function,
|
||||||
title?: string, // ถ้ามี cancel action ใส่เป็น null
|
title?: string, // ถ้ามี cancel action ใส่เป็น null
|
||||||
desc?: string, // ถ้ามี cancel action ใส่เป็น null
|
desc?: string, // ถ้ามี cancel action ใส่เป็น null
|
||||||
cancel?: Function,
|
cancel?: Function
|
||||||
) => {
|
) => {
|
||||||
q.dialog({
|
q.dialog({
|
||||||
component: CustomComponent,
|
component: CustomComponent,
|
||||||
|
|
@ -851,7 +851,7 @@ export const useCounterMixin = defineStore("mixin", () => {
|
||||||
const dialogMessageNotify = (
|
const dialogMessageNotify = (
|
||||||
q: any,
|
q: any,
|
||||||
desc?: string, // ถ้ามี cancel action ใส่เป็น null
|
desc?: string, // ถ้ามี cancel action ใส่เป็น null
|
||||||
cancel?: Function,
|
cancel?: Function
|
||||||
) => {
|
) => {
|
||||||
q.dialog({
|
q.dialog({
|
||||||
component: CustomComponent,
|
component: CustomComponent,
|
||||||
|
|
@ -1252,15 +1252,9 @@ export const useCounterMixin = defineStore("mixin", () => {
|
||||||
|
|
||||||
// กรณีมีเฉพาะ date
|
// กรณีมีเฉพาะ date
|
||||||
function convertDateToAPI(date: Date | null) {
|
function convertDateToAPI(date: Date | null) {
|
||||||
if (!date) return null;
|
return date
|
||||||
|
? format(utcToZonedTime(date, "Asia/Bangkok"), "yyyy-MM-dd")
|
||||||
const parsedDate = new Date(date);
|
: null;
|
||||||
|
|
||||||
if (parsedDate) {
|
|
||||||
return format(parsedDate, "yyyy-MM-dd");
|
|
||||||
} else {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// กรณี datetime
|
// กรณี datetime
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,7 @@ async function checkUser() {
|
||||||
await dataStore.getProFileType();
|
await dataStore.getProFileType();
|
||||||
kpiDataStore.dataProfile = data; // Set dataProfile in kpiDataStore
|
kpiDataStore.dataProfile = data; // Set dataProfile in kpiDataStore
|
||||||
if (data.avatarName) {
|
if (data.avatarName) {
|
||||||
getImg(data.profileId, data.avatarName);
|
await getImg(data.profileId, data.avatarName);
|
||||||
} else {
|
} else {
|
||||||
dataStore.profileImg = avatar;
|
dataStore.profileImg = avatar;
|
||||||
}
|
}
|
||||||
|
|
@ -106,9 +106,6 @@ function getImg(id: string, pathName: string) {
|
||||||
.get(config.API.fileByFile("ทะเบียนประวัติ", "โปรไฟล์", id, pathName))
|
.get(config.API.fileByFile("ทะเบียนประวัติ", "โปรไฟล์", id, pathName))
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
dataStore.profileImg = res.data.downloadUrl;
|
dataStore.profileImg = res.data.downloadUrl;
|
||||||
})
|
|
||||||
.catch(() => {
|
|
||||||
dataStore.profileImg = avatar;
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue