Source code for shuup.core.pricing.default_pricing

# -*- coding: utf-8 -*-
# This file is part of Shuup.
#
# Copyright (c) 2012-2021, Shuup Commerce Inc. All rights reserved.
#
# This source code is licensed under the OSL-3.0 license found in the
# LICENSE file in the root directory of this source tree.
from django.utils.translation import ugettext_lazy as _

from shuup.core.models import ShopProduct
from shuup.core.pricing import PriceInfo, PricingModule


[docs]class DefaultPricingModule(PricingModule): identifier = "default_pricing" name = _("Default Pricing")
[docs] def get_price_info(self, context, product, quantity=1): """ Return a `PriceInfo` calculated from `ShopProduct.default_price` Since `ShopProduct.default_price` can be `None` it will be set to zero (0) if `None`. """ shop = context.shop shop_product = ShopProduct.objects.get(product=product, shop=shop) default_price = shop_product.default_price_value or 0 return PriceInfo( price=shop.create_price(default_price * quantity), base_price=shop.create_price(default_price * quantity), quantity=quantity, )