From 89885d418e6a7ce597adcfdeb331813fa24734d1 Mon Sep 17 00:00:00 2001 From: JhumanJ Date: Mon, 28 Apr 2025 14:25:23 +0200 Subject: [PATCH] Update tax rate for Finland in GenerateTaxExport command - Modified the tax rate for Finland from 24 to 25.5 in the `GenerateTaxExport.php` command file. This change reflects the updated tax regulations and ensures accurate tax calculations in the export process. These modifications aim to maintain compliance with the latest tax standards and improve the reliability of tax-related functionalities. --- api/app/Console/Commands/Tax/GenerateTaxExport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/app/Console/Commands/Tax/GenerateTaxExport.php b/api/app/Console/Commands/Tax/GenerateTaxExport.php index 2f24b8eb..0f651415 100644 --- a/api/app/Console/Commands/Tax/GenerateTaxExport.php +++ b/api/app/Console/Commands/Tax/GenerateTaxExport.php @@ -36,7 +36,7 @@ class GenerateTaxExport extends Command 'CZ' => 21, 'DK' => 25, 'EE' => 22, - 'FI' => 24, + "FI" => 25.5, 'FR' => 20, 'DE' => 19, 'GR' => 24,