diff --git a/app/Console/Commands/Tax/GenerateTaxExport.php b/app/Console/Commands/Tax/GenerateTaxExport.php index 555b66d..02d836c 100644 --- a/app/Console/Commands/Tax/GenerateTaxExport.php +++ b/app/Console/Commands/Tax/GenerateTaxExport.php @@ -132,10 +132,10 @@ class GenerateTaxExport extends Command $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); - $aggregatedReportFilePath = 'tax-export-aggregated_' . $startDate . '_' . $endDate . '.xlsx'; + $aggregatedReportFilePath = 'opnform-tax-export-aggregated_' . $startDate . '_' . $endDate . '.xlsx'; $this->exportAsXlsx($aggregatedReport, $aggregatedReportFilePath); // Display the results