Fix payment error

pull/8/head
JamesRamm 2017-02-03 20:27:35 +00:00
rodzic 20d36d75cf
commit 645710c9f0
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -85,7 +85,7 @@ def capture_payment(request):
# Create the order items
for item in items:
order_item = OrderItem(
product=item.product,
product=item.variant,
quantity=item.quantity,
order=order
)