From 1da84641b623b5c52b328b9e9620c9e0e5f403aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Tue, 12 Dec 2023 13:58:40 +0100 Subject: [PATCH] feat: ignore availability status of webcam in TCA select field --- .../Configuration/TCA/tx_epproducts_domain_model_region.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/typo3conf/ext/ep_products/Configuration/TCA/tx_epproducts_domain_model_region.php b/public/typo3conf/ext/ep_products/Configuration/TCA/tx_epproducts_domain_model_region.php index 10814304..e13f0a10 100644 --- a/public/typo3conf/ext/ep_products/Configuration/TCA/tx_epproducts_domain_model_region.php +++ b/public/typo3conf/ext/ep_products/Configuration/TCA/tx_epproducts_domain_model_region.php @@ -549,7 +549,8 @@ return [ ], 'renderType' => 'selectSingle', 'foreign_table' => 'tx_epproducts_domain_model_webcam', - 'foreign_table_where' => 'AND tx_epproducts_domain_model_webcam.available = 1 AND tx_epproducts_domain_model_webcam.snowreport=###REC_FIELD_snowreport### ORDER BY tx_epproducts_domain_model_webcam.name', +// 'foreign_table_where' => 'AND tx_epproducts_domain_model_webcam.available = 1 AND tx_epproducts_domain_model_webcam.snowreport=###REC_FIELD_snowreport### ORDER BY tx_epproducts_domain_model_webcam.name', + 'foreign_table_where' => 'AND tx_epproducts_domain_model_webcam.snowreport=###REC_FIELD_snowreport### ORDER BY tx_epproducts_domain_model_webcam.name', 'minitems' => 0, 'maxitems' => 1, ],