diff --git a/web/typo3conf/ext/ep_products/Classes/Service/ContingentImportService.php b/web/typo3conf/ext/ep_products/Classes/Service/ContingentImportService.php index db97c38b..077725de 100644 --- a/web/typo3conf/ext/ep_products/Classes/Service/ContingentImportService.php +++ b/web/typo3conf/ext/ep_products/Classes/Service/ContingentImportService.php @@ -245,7 +245,7 @@ class ContingentImportService implements SingletonInterface $availableRooms = (int) $xmlRoom['frei'] > 0 ? (int) $xmlRoom['frei'] : 0; $availablePax = $availableRooms * $roomType['pax']; } - if ($availablePax === 0) { + if ($availablePax === 0 && $roomType['ctrl'] === false) { continue; } $minPrice = (int) $xmlRoom['abpreis'];