From e319e9ae5de0bcef2d71272165b12bca7cb8e6dc Mon Sep 17 00:00:00 2001 From: Henning <leutz@pcsg.de> Date: Wed, 26 Mar 2025 10:43:56 +0100 Subject: [PATCH] fix: update company detection in Address.php This commit introduces a fix in the 'Address.php' file. It improves the logic for detecting whether a user belongs to a company. Now, if the 'isCompany' attribute is set and the 'company' attribute is not empty, the user will be considered part of a company. Related: pcsg/buero#515 --- src/QUI/ERP/Address.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/QUI/ERP/Address.php b/src/QUI/ERP/Address.php index 0ab03dd..4a0ad5f 100644 --- a/src/QUI/ERP/Address.php +++ b/src/QUI/ERP/Address.php @@ -62,6 +62,11 @@ public function getDisplay(array $options = []): string if ($this->User && $this->User->isCompany()) { $isCompany = $this->User->isCompany(); + } elseif ( + !empty($this->getAttribute('isCompany')) + && !empty($this->getAttribute('company')) + ) { + $isCompany = true; } if (!empty($this->getAttribute('contactPerson'))) { -- GitLab