diff --git a/src/QUI/ERP/Address.php b/src/QUI/ERP/Address.php
index 0ab03dd5210a409aebeb3255b664f25cb3269259..4a0ad5fadf32a2813acb5d407ec26724ef42e4cb 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'))) {