Merge pull request 'feat/report' (#18) from feat/report into development
continuous-integration/drone/tag Build is passing
Details
continuous-integration/drone/tag Build is passing
Details
Reviewed-on: #18pull/21/head devel_10.6.1
commit
91a01a2857
|
@ -98,14 +98,15 @@ export class ReportExportService extends BaseReportService {
|
||||||
(_, i) => i * limit,
|
(_, i) => i * limit,
|
||||||
);
|
);
|
||||||
|
|
||||||
const fileName = `${fName ?? config.label} (${Number(new Date())})`;
|
const defaultFileName = fName ?? config.label;
|
||||||
|
const fileName = `${defaultFileName} (${Number(new Date())})`;
|
||||||
|
|
||||||
const exportHistory = {
|
const exportHistory = {
|
||||||
id: undefined,
|
id: undefined,
|
||||||
group_name: config.group_name,
|
group_name: config.group_name,
|
||||||
unique_name: config.unique_name,
|
unique_name: config.unique_name,
|
||||||
label: config.label,
|
label: config.label,
|
||||||
file_name: fName,
|
file_name: defaultFileName,
|
||||||
file_url: null,
|
file_url: null,
|
||||||
total_data: totalRow,
|
total_data: totalRow,
|
||||||
processing_data: 0,
|
processing_data: 0,
|
||||||
|
|
Loading…
Reference in New Issue