Rev 5972 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
'''Created on 06-Jul-2011@author: Varun Gupta'''from shop2020.clients.CatalogClient import CatalogClientfrom shop2020.clients.UserClient import UserClientfrom shop2020.model.v1.user.impl.PromotionRuleDataUtilities import \get_coupon_usage_count, get_coupon_usage_count_by_userfrom shop2020.thriftpy.model.v1.user.ttypes import PromotionException, Discountfrom shop2020.model.v1.user.impl import PromotionDataAccessorsdef execute(cart, coupon):if coupon.usageLimit is not None:if coupon.usageLimit <= get_coupon_usage_count(coupon.couponCode):raise PromotionException(112, 'This promotion is over.')user_client = UserClient().get_client()user = user_client.getUserByCartId(cart.id)if coupon.usageLimitForUser is not None:if coupon.usageLimitForUser <= get_coupon_usage_count_by_user(coupon.couponCode, user.userId):raise PromotionException(111, 'You have already used this coupon maximum possible times.')if not cart.lines:return carttotal_selling_price = 0total_discounted_price = 0cart_has_specified_item = Falsediscounts = []couponMappings = PromotionDataAccessors.coupon_item_mapping_cache.get(coupon.couponCode)for line in cart.lines:total_selling_price += line.actualPrice * line.quantitydiscount_value = 0if couponMappings.has_key(line.itemId) :cart_has_specified_item = Trueline.discountedPrice = round(line.actualPrice - couponMappings[line.itemId], 4)total_discounted_price += round(line.discountedPrice * line.quantity, 4)discount_value = couponMappings[line.itemId]else:total_discounted_price += round(line.actualPrice * line.quantity, 4)if discount_value > 0:discount = Discount()discount.discount = discount_valuediscount.quantity = line.quantitydiscount.cart_id = cart.iddiscount.item_id = line.itemIddiscounts.append(discount)if cart_has_specified_item is False:raise PromotionException(115, 'This coupon is not applicable current items in cart')cart.totalPrice = round(total_selling_price, 4)cart.discountedPrice = total_discounted_pricereturn cart, discountsdef getDiscountOnItem(item):return 100