diff --git a/src/QUI/ERP/Shipping/Rules/ShippingRule.php b/src/QUI/ERP/Shipping/Rules/ShippingRule.php
index b86b833c6529d79b61cae6d78c1d1b23217c5832..7d67255c374537c03a206516e61718bfecd72dad 100644
--- a/src/QUI/ERP/Shipping/Rules/ShippingRule.php
+++ b/src/QUI/ERP/Shipping/Rules/ShippingRule.php
@@ -8,6 +8,7 @@
 
 use QUI;
 use QUI\CRUD\Factory;
+use QUI\ERP\Address;
 use QUI\ERP\Areas\Utils as AreaUtils;
 use QUI\ERP\Products\Handler\Fields;
 use QUI\ERP\Products\Handler\Products;
@@ -333,11 +334,15 @@ public function canUsedBy(QUI\Interfaces\Users\User $User): bool
     /**
      * Is this shipping rule allowed for this address?
      *
-     * @param QUI\ERP\Address|QUI\Users\Address $Address
+     * @param Address|QUI\Users\Address|null $Address
      * @return bool
      */
-    public function canUsedWithAddress(QUI\ERP\Address|QUI\Users\Address $Address): bool
+    public function canUsedWithAddress(QUI\ERP\Address|QUI\Users\Address $Address = null): bool
     {
+        if (!$Address) {
+            return false;
+        }
+
         $areasValue = $this->getAttribute('areas');
 
         if ($areasValue) {