diff --git a/composer.json b/composer.json
index ecc7c7828e6969260c88bb1f2534d9ebdb271497..2ff5ef7415ee68c69b873b32ab235d80e188f29b 100644
--- a/composer.json
+++ b/composer.json
@@ -25,7 +25,7 @@
     "quiqqer\/watcher": ">=0.12|dev-master|dev-dev",
     "quiqqer\/translator": "1.*|dev-master|dev-dev",
     "quiqqer\/employee": "1.*|dev-master|dev-dev",
-    "quiqqer\/customer": "1.*|dev-master|dev-dev",
+    "quiqqer\/customer": "^1.1|dev-master|dev-dev",
     "quiqqer\/qui-php": "1.*|>=0.11|dev-master|dev-dev",
     "quiqqer\/smarty3": ">=1.7|dev-master|dev-dev",
     "quiqqer\/countries": ">=1.3|dev-master|dev-dev",
diff --git a/src/QUI/ERP/Address.php b/src/QUI/ERP/Address.php
index 589c494f91736a1e8293623d5120fac60caf825b..2891bc3e8851baea95ca6b90c6f9a4418677ebd8 100644
--- a/src/QUI/ERP/Address.php
+++ b/src/QUI/ERP/Address.php
@@ -7,6 +7,7 @@
 namespace QUI\ERP;
 
 use QUI;
+use QUI\ERP\Customer\Utils as CustomerUtils;
 
 /**
  * Class Address
@@ -56,6 +57,12 @@ public function getDisplay($options = []): string
 
         if (!empty($this->getAttribute('contactPerson'))) {
             $contactPerson = $this->getAttribute('contactPerson');
+        } elseif ($this->User) {
+            $ContactPersonAddress = CustomerUtils::getInstance()->getContactPersonAddress($this->User);
+
+            if ($ContactPersonAddress) {
+                $contactPerson = $ContactPersonAddress->getName();
+            }
         }
 
         if ((bool)Defaults::conf('general', 'contactPersonOnAddress') === false) {