diff --git a/saleor/shipping/models.py b/saleor/shipping/models.py index 9e938d3b239..bf93ad7b551 100644 --- a/saleor/shipping/models.py +++ b/saleor/shipping/models.py @@ -54,7 +54,7 @@ def _applicable_price_based_methods( price_based = Q(shipping_method_id__in=qs_shipping_method) channel_filter = Q(channel_id=channel_id) min_price_is_null = Q(minimum_order_price_amount__isnull=True) - min_price_matched = Q(minimum_order_price_amount__lte=price.amount) + min_price_matched = Q(minimum_order_price_amount__gte=price.amount) no_price_limit = Q(maximum_order_price_amount__isnull=True) max_price_matched = Q(maximum_order_price_amount__gte=price.amount)