chore: blacked
This commit is contained in:
+13
-13
@@ -94,20 +94,20 @@ class CartDetail(TemplateView, CreateView):
|
||||
|
||||
cart, created = get_or_create_cart(request)
|
||||
|
||||
billing_address_full_name = form.cleaned_data.get('billing_address_full_name')
|
||||
billing_address_address = form.cleaned_data.get('billing_address')
|
||||
billing_address_town = form.cleaned_data.get('billing_address_town')
|
||||
billing_address_state = form.cleaned_data.get('billing_address_state')
|
||||
billing_address_country = form.cleaned_data.get('billing_address_country')
|
||||
billing_address_zip = form.cleaned_data.get('billing_address_zip')
|
||||
billing_address_full_name = form.cleaned_data.get("billing_address_full_name")
|
||||
billing_address_address = form.cleaned_data.get("billing_address")
|
||||
billing_address_town = form.cleaned_data.get("billing_address_town")
|
||||
billing_address_state = form.cleaned_data.get("billing_address_state")
|
||||
billing_address_country = form.cleaned_data.get("billing_address_country")
|
||||
billing_address_zip = form.cleaned_data.get("billing_address_zip")
|
||||
|
||||
shipping_address_full_name = form.cleaned_data.get('shipping_address_full_name')
|
||||
shipping_address_address = form.cleaned_data.get('shipping_address')
|
||||
shipping_address_town = form.cleaned_data.get('shipping_address_town')
|
||||
shipping_address_state = form.cleaned_data.get('shipping_address_state')
|
||||
shipping_address_country = form.cleaned_data.get('shipping_address_country')
|
||||
shipping_address_zip = form.cleaned_data.get('shipping_address_zip')
|
||||
shipping_address_phone = form.cleaned_data.get('shipping_address_phone')
|
||||
shipping_address_full_name = form.cleaned_data.get("shipping_address_full_name")
|
||||
shipping_address_address = form.cleaned_data.get("shipping_address")
|
||||
shipping_address_town = form.cleaned_data.get("shipping_address_town")
|
||||
shipping_address_state = form.cleaned_data.get("shipping_address_state")
|
||||
shipping_address_country = form.cleaned_data.get("shipping_address_country")
|
||||
shipping_address_zip = form.cleaned_data.get("shipping_address_zip")
|
||||
shipping_address_phone = form.cleaned_data.get("shipping_address_phone")
|
||||
|
||||
shipping_method = get_object_or_404(ShippingMethod, pk=shipping_method_id)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user