diff --git a/src/QUI/ERP/Money/Price.php b/src/QUI/ERP/Money/Price.php
index 54d984f596e56d7d39a063b1d7bdde99934c476b..92f44c298899aea80b05776b9ed035bfac952d98 100644
--- a/src/QUI/ERP/Money/Price.php
+++ b/src/QUI/ERP/Money/Price.php
@@ -64,6 +64,10 @@ class Price
      */
     public function __construct($price, QUI\ERP\Currency\Currency $Currency, $User = false)
     {
+        if ($price instanceof Price) {
+            $price = $price->getPrice();
+        }
+
         $this->price    = $price;
         $this->Currency = $Currency;
 
@@ -192,10 +196,14 @@ public function getCurrency(): QUI\ERP\Currency\Currency
      */
     public static function validatePrice($value, $Locale = null)
     {
-        if (is_float($value)) {
+        if (is_float($value) || is_int($value)) {
             return round($value, QUI\ERP\Defaults::getPrecision());
         }
 
+        if ($value instanceof Price) {
+            $value = $value->getPrice();
+        }
+
         $value      = (string)$value;
         $isNegative = substr($value, 0, 1) === '-';