From 384de8786ecb0a935d93698697a12160a76dd979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Fri, 30 Sep 2022 12:35:10 +0200 Subject: [PATCH] WIP Include new selection group into date import --- .../ext/ep_products/Classes/Service/DateImportService.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/typo3conf/ext/ep_products/Classes/Service/DateImportService.php b/public/typo3conf/ext/ep_products/Classes/Service/DateImportService.php index a0c66c50..481262e0 100644 --- a/public/typo3conf/ext/ep_products/Classes/Service/DateImportService.php +++ b/public/typo3conf/ext/ep_products/Classes/Service/DateImportService.php @@ -377,6 +377,7 @@ class DateImportService implements SingletonInterface, LoggerAwareInterface $includedPersonnel = $this->parseSelectionGroup($xmlDate, 'Leistungen Personal'); $includedEvents = $this->parseSelectionGroup($xmlDate, 'Leistungen Events'); $includedOther = $this->parseSelectionGroup($xmlDate, 'Leistungen Sonstige'); + $includedCourses = $this->parseSelectionGroup($xmlDate, 'Leistungen Kurse'); $includedServices = [ ...$includedAccommodation, @@ -384,6 +385,7 @@ class DateImportService implements SingletonInterface, LoggerAwareInterface ...$includedTransportation, ...$includedBoard, ...$includedProgramme, + ...$includedCourses, ...$includedEvents, ...$includedPersonnel, ...$includedOther,