專案

一般

配置概況

動作

Feature #139

已結束
SC SC

export to excel file

Feature #139: export to excel file

是由 Sashiba Chou將近 2 年 前加入. 於 將近 2 年 前更新.

狀態:
Resolved
優先權:
Normal
被分派者:
開始日期:
2024-04-06
完成日期:
2024-04-06
完成比例:

100%

預估工時:
2:00 小時
耗用工時:

概述

filename: patient_id+"_"+cpcr_id

SC 是由 Sashiba Chou將近 2 年 前更新 動作 #2

export to excel file, with filename="patient_serial_number"+"_"+"cpcr_id", which "cpcr_id" was given value at the very begining with current timestamp

make some changes as below to specify filename:
//return (uri + base64(format(excelFile, ctx)));
var link = document.createElement("A");
link.href = (uri + base64(format(excelFile, ctx)));
link.download = $settings.fileName || '無病歷號.xls';
link.target = '_blank';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);

動作

匯出至 PDF Atom