Change tax output prefix filename
This commit is contained in:
parent
465010c021
commit
3fd5077491
|
@ -132,10 +132,10 @@ class GenerateTaxExport extends Command
|
||||||
|
|
||||||
$aggregatedReport = $this->aggregateReport($processedInvoices);
|
$aggregatedReport = $this->aggregateReport($processedInvoices);
|
||||||
|
|
||||||
$filePath = 'tax-export-per-invoice_' . $startDate . '_' . $endDate . '.xlsx';
|
$filePath = 'opnform-tax-export-per-invoice_' . $startDate . '_' . $endDate . '.xlsx';
|
||||||
$this->exportAsXlsx($processedInvoices, $filePath);
|
$this->exportAsXlsx($processedInvoices, $filePath);
|
||||||
|
|
||||||
$aggregatedReportFilePath = 'tax-export-aggregated_' . $startDate . '_' . $endDate . '.xlsx';
|
$aggregatedReportFilePath = 'opnform-tax-export-aggregated_' . $startDate . '_' . $endDate . '.xlsx';
|
||||||
$this->exportAsXlsx($aggregatedReport, $aggregatedReportFilePath);
|
$this->exportAsXlsx($aggregatedReport, $aggregatedReportFilePath);
|
||||||
|
|
||||||
// Display the results
|
// Display the results
|
||||||
|
|
Loading…
Reference in New Issue