Compare commits

..

No commits in common. "c6bb8fffe252c784779e34fb02fa1e816b347624" and "ac7da9c3637015fc0ce4a55aae28011db0b217f2" have entirely different histories.

View file

@ -370,32 +370,18 @@ async function uploadFile(event: any, date: any) {
*/
async function downloadAttachment(type: string, id: string) {
showLoader();
try {
const response = await http.get(
config.API.retirementReport + `/${type}/${id}`,
{
headers: {
accept:
type === "pdf"
? "application/pdf"
: "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"content-Type": "application/json",
},
responseType: "blob",
}
);
const blob = response.data;
const url = URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
link.download = `รายชื่อผู้เกษียณอายุราชการ.${type}`;
link.click();
URL.revokeObjectURL(url);
} catch (e) {
messageError($q, e);
} finally {
hideLoader();
}
await http
.get(config.API.reportRetireList(type, id))
.then(async (res) => {
const data = res.data.result;
await genReport(data, `รายชื่อผู้เกษียณอายุราชการ`, type);
})
.catch(async (e) => {
messageError($q, JSON.parse(await e.response.data.text()));
})
.finally(() => {
hideLoader();
});
}
//