From c24651fabd4f2b6caa75360d338c60b740a21021 Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Thu, 24 Apr 2025 15:16:46 +0000 Subject: [PATCH] Warehouse/improve2 --- application/WarehouseOrder/WarehouseOrderController.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/application/WarehouseOrder/WarehouseOrderController.php b/application/WarehouseOrder/WarehouseOrderController.php index b96edda53..55c5bd7c7 100644 --- a/application/WarehouseOrder/WarehouseOrderController.php +++ b/application/WarehouseOrder/WarehouseOrderController.php @@ -192,9 +192,7 @@ class WarehouseOrderController extends TTCrud { $isGermanSpeaking = in_array($countryText, ['Österreich', 'Deutschland', 'Schweiz']); $appendToBody = ''; - if ($isGermanSpeaking && $countryText !== "Österreich") { - $appendToBody .= $texts['DE']['taxFree'] . '

'; - } else { + if (!$isGermanSpeaking) { $appendToBody .= $texts['EN']['taxFree'] . '

'; }