only get the cart

the cart was created in the cart view. In the checkout we only want to
display it.
This commit is contained in:
Andreas Zweili 2018-02-26 21:55:38 +01:00
parent 494ce66631
commit db737eca02
1 changed files with 3 additions and 5 deletions

View File

@ -351,12 +351,10 @@ def checkout(request):
# • cancelled -> Bestellung storniert
# • on hold -> Bestellung pausiert
cart_id, created_cart = ShoppingCart.objects.get_or_create(
user=request.user)
if created_cart is False:
cart = ShoppingCart.objects.get(user=request.user)
if cart:
# get all items in the cart of this customer:
cart_positions = CartPosition.objects.filter(
cart=cart_id)
cart_positions = CartPosition.objects.filter(cart=cart)
if (cart_positions.count()) > 0:
# make a list out of all articles:
cart_position_list = list(cart_positions)