From 8272b82bc695b8dceeebf4ec9dd946992705ba97 Mon Sep 17 00:00:00 2001 From: Frank Schubert Date: Tue, 5 Dec 2023 18:28:33 +0100 Subject: [PATCH] Voiceplan Import: Added Exception for Freecall Zone without price --- application/Voiceplan/Voiceplan.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Voiceplan/Voiceplan.php b/application/Voiceplan/Voiceplan.php index 787e4f924..e5c3b2ab9 100644 --- a/application/Voiceplan/Voiceplan.php +++ b/application/Voiceplan/Voiceplan.php @@ -113,7 +113,7 @@ class Voiceplan extends mfBaseModel { $price_ek = $price_special; } - if((!$name || !$price_ek) && $extref != "800") { + if((!$name || !$price_ek) && $extref != "900") { $this->log->warning(__METHOD__.": not importing Voiceplanzone with empty value: name: $name | ek: $price_ek"); continue; }