diff --git a/classes/Modules/MatrixProduct/MatrixProductGateway.php b/classes/Modules/MatrixProduct/MatrixProductGateway.php index 0ad8872d..f9c52b8e 100644 --- a/classes/Modules/MatrixProduct/MatrixProductGateway.php +++ b/classes/Modules/MatrixProduct/MatrixProductGateway.php @@ -127,6 +127,8 @@ final class MatrixProductGateway } public function GetArticleOptionIdsByGroupIds(int|array $groupIds) : array { + if (empty($groupIds)) + return []; $sql = "SELECT id FROM matrixprodukt_eigenschaftenoptionen WHERE gruppe IN (:ids)"; return $this->db->fetchCol($sql, ['ids' => $groupIds]); } @@ -267,6 +269,8 @@ final class MatrixProductGateway public function GetVariantIdsByOptions(int|array $optionIds) : array { + if (empty($optionIds)) + return []; $sql = "SELECT artikel FROM matrixprodukt_optionen_zu_artikel WHERE option_id IN (:ids)"; return $this->db->fetchCol($sql, ['ids' => $optionIds]); } diff --git a/classes/Modules/MatrixProduct/www/js/App.vue b/classes/Modules/MatrixProduct/www/js/App.vue index d6a819af..87cd4fdf 100644 --- a/classes/Modules/MatrixProduct/www/js/App.vue +++ b/classes/Modules/MatrixProduct/www/js/App.vue @@ -60,6 +60,10 @@ function onSave() { onClose(); } +function onGroupSave() { + location.reload(); +} + function onClose() { model.value = null; } @@ -67,8 +71,8 @@ function onClose() {