From f44255515662b1a966c8f901e23152da79c5b65e Mon Sep 17 00:00:00 2001 From: Andreas Palm Date: Fri, 15 Mar 2024 22:22:27 +0100 Subject: [PATCH] Small bugfix regarding groupEdits --- classes/Modules/MatrixProduct/MatrixProductGateway.php | 4 ++++ classes/Modules/MatrixProduct/www/js/App.vue | 8 ++++++-- ...atrixProduct-e3c4dfba.js => MatrixProduct-8ac5c604.js} | 2 +- www/dist/manifest.json | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) rename www/dist/assets/modules/{MatrixProduct-e3c4dfba.js => MatrixProduct-8ac5c604.js} (97%) 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() {