diff --git a/src/QUI/ERP/Accounting/Calc.php b/src/QUI/ERP/Accounting/Calc.php
index 078f8363e1ae0d62921200772b9df96286a9c9c4..2aa95cdefcf20b2b9053ba75fc971f81b6a909d6 100644
--- a/src/QUI/ERP/Accounting/Calc.php
+++ b/src/QUI/ERP/Accounting/Calc.php
@@ -221,6 +221,10 @@ public function calcArticleList(ArticleList $List, $callback = false)
             $nettoSum       = $nettoSum + $PriceFactor->getNettoSum();
             $priceFactorSum = $priceFactorSum + $PriceFactor->getNettoSum();
 
+            if ($isEuVatUser) {
+                $PriceFactor->setEuVatStatus(true);
+            }
+
             $vat    = $PriceFactor->getVat();
             $vatSum = $PriceFactor->getVatSum();
 
diff --git a/src/QUI/ERP/Accounting/PriceFactors/Factor.php b/src/QUI/ERP/Accounting/PriceFactors/Factor.php
index be8d0b1cea2a9db2f46fa505257eadb11bf07583..0bef0e370259235fee2ae106ae6db9b6414349e4 100644
--- a/src/QUI/ERP/Accounting/PriceFactors/Factor.php
+++ b/src/QUI/ERP/Accounting/PriceFactors/Factor.php
@@ -58,6 +58,11 @@ class Factor
      */
     protected $valueText = false;
 
+    /**
+     * @var
+     */
+    protected $euVat = false;
+
     /**
      * FactorList constructor.
      *
@@ -133,6 +138,10 @@ public function getDescription()
      */
     public function getSum()
     {
+        if ($this->euVat) {
+            return $this->getNettoSum();
+        }
+
         return $this->sum;
     }
 
@@ -163,6 +172,10 @@ public function getNettoSum()
      */
     public function getVatSum()
     {
+        if ($this->euVat) {
+            return 0;
+        }
+
         if ($this->vat) {
             return $this->nettoSum * ($this->vat / 100);
         }
@@ -177,6 +190,10 @@ public function getVatSum()
      */
     public function getVat()
     {
+        if ($this->euVat) {
+            return 0;
+        }
+
         if ($this->vat) {
             return $this->vat;
         }
@@ -234,4 +251,21 @@ public function toJSON()
     {
         return \json_encode($this->toArray());
     }
+
+    //region eu vat
+
+    public function isEuVat()
+    {
+        return $this->euVat;
+    }
+
+    /**
+     * @param bool $status
+     */
+    public function setEuVatStatus(bool $status)
+    {
+        $this->euVat = $status;
+    }
+
+    //endregion
 }