diff --git a/src/QUI/ERP/User.php b/src/QUI/ERP/User.php
index f06c672ba7aac1dbd5136b4537f019a34c6021b3..9303a7f552f0e009d5303c173fa01a14d3dc50eb 100644
--- a/src/QUI/ERP/User.php
+++ b/src/QUI/ERP/User.php
@@ -101,7 +101,7 @@ public function __construct(array $attributes)
         }
 
         $this->id        = $attributes['id'];
-        $this->isCompany = (bool)$attributes['isCompany'];
+        $this->isCompany = !empty($attributes['isCompany']) || !empty($attributes['company']);
         $this->isNetto   = null;
 
         $this->lang      = $attributes['lang'];