Change tax output prefix filename

This commit is contained in:
Julien Nahum 2024-02-19 17:23:15 +01:00
부모 465010c021
커밋 3fd5077491
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@ -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