本文整理汇总了Python中cart.Cart.change_id方法的典型用法代码示例。如果您正苦于以下问题:Python Cart.change_id方法的具体用法?Python Cart.change_id怎么用?Python Cart.change_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cart.Cart
的用法示例。
在下文中一共展示了Cart.change_id方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: make_order
# 需要导入模块: from cart import Cart [as 别名]
# 或者: from cart.Cart import change_id [as 别名]
def make_order(request):
cart = Cart(request)
user = request.user
order = None
if not user.is_authenticated():
order = Order(client_name=u'Не зарегистрирован, ' + request.POST["name"], client_phone=request.POST["phone"], order_status=OrderStatus.objects.get(status='Принят'))
order.order_info = "\n".join([item.product.brand + " " + str(item.count) for item in cart])
order.save()
for item in cart:
item.order = order
item.code = item.product.code
item.brand = item.product.brand
item.price_1 = item.product.price_with_currency
item.price_2 = item.get_price_with_discount()
item.supplier = item.product.supplier
item.save()
else:
for item in cart:
item.user = user
item.code = item.product.code
item.brand = item.product.brand
item.price_1 = item.product.price_with_currency
item.price_2 = item.get_price_with_discount()
item.supplier = item.product.supplier
item.save()
cart.cart.checked_out = True
cart.cart.save()
cart.change_id(request)
cart = Cart(request)
request.basket_number = 0
return HttpResponseRedirect("/basket")