{% extends 'base.html' %} {% load static %} {% load i18n %} {% block content %}

結帳

購買清單

{% for item in products.all %} {% if item.product %}
{% if web.display_cart_pic %}

{% if item.product.photo %} {% else %}{% endif %}

{% endif %}
{% if item.addfrom %}加購{% endif %} {% if item.diy %}組裝[{{ item.diy.product.name }}]{% endif %} {% if item.packedfrom %}套裝[{{ item.packedfrom.packed.name }}]{% endif %} {{ item.product.name }}
x {{item.quantity}}
{% if item.product.sprice %}
{{ item.product.sprice }}{% if item.quantity > 1 %} ({% widthratio item.product.sprice 1 item.quantity %}){% endif %}
{{ item.product.price }}
{% else %}
{{ item.product.price }}{% if item.quantity > 1 %} ({% widthratio item.product.price 1 item.quantity %}){% endif %}
{% endif %}
{% endif %} {% if item.servicefee %}
{% if web.display_cart_pic %}

{% if item.product.photo %} {% else %}{% endif %}

{% endif %}
{% if item.diy %}組裝[{{ item.diy.product.name }}]{% endif %} {{ item.servicefee.name }}
x {{item.quantity}}
{{ item.servicefee.price }}
{% endif %} {% if item.packed %}
{% if web.display_cart_pic %}

{% if item.packed.photo %} {% else %}{% endif %}

{% endif %}
{{ item.packed.name }}
x {{ item.quantity }}
{% endif %} {% endfor %}

訂單資訊

{% if order.payment_method %}
    {% for num,txt in delivery_options %} {% if order.shipping_method == num %}
  • 運送方式: {{ txt }}
  • {% endif %} {% endfor %} {% for num,txt in payment_options %} {% if order.payment_method == num %}
  • 付款方式: {{ txt }}
  • {% endif %} {% endfor %}
{% endif %}
{% csrf_token %} {% if payment_form.non_field_errors %}
{{payment_form.non_field_errors}}
{% endif %} {% for field in payment_form.visible_fields %} {% if field.name == 'payment' %}
{{ field }}
{% if field.errors %} {% for error in field.errors %}

{% trans error %}

{% endfor %} {% endif %}
{% elif field.name == 'payment_ps'%}
選擇分期期數
{{ field }} {% if field.errors %} {% for error in field.errors %}

{% trans error %}

{% endfor %} {% endif %}
{% elif field.name == 'payment_cz'%}
選擇分期期數
{{ field }} {% if field.errors %} {% for error in field.errors %}

{% trans error %}

{% endfor %} {% endif %}
{% elif field.name == 'payment_hy'%}
選擇分期期數
{{ field }} {% if field.errors %} {% for error in field.errors %}

{% trans error %}

{% endfor %} {% endif %}
{% elif field.name == 'payment_far'%}
選擇分期期數
{{ field }} {% if field.errors %} {% for error in field.errors %}

{% trans error %}

{% endfor %} {% endif %}
{% elif field.name == 'tw_id'%}
{{ field }}
{% if field.errors %} {% for error in field.errors %}

{% trans error %}

{% endfor %} {% endif %}
{% elif field.name == 'mobile'%}
{{ field }}
{% if field.errors %} {% for error in field.errors %}

{% trans error %}

{% endfor %} {% endif %}
{% endif %} {% endfor %}

商品總額:
{{ order.cart.total }}
運費:
{{ order.shipping_total }}
手續費:
{{ order.processing_fee }}

訂單總金額:
{{ order.total }}
{% if payment_form.is_valid or order.shipping_method in '16' %}
{% if order.payment_method == '5' or order.payment_method == '7' or order.payment_method == '8' or order.payment_method == '9' or order.payment_method == '50' or order.payment_method == '51' or order.payment_method == '52' %} 完成訂單 {% elif order.payment_method == '10' or "cz" in order.payment_method %} 前往銀角零卡分期付款 {% elif order.payment_method == '70' %} 前往遠信現金分期付款 {% elif order.payment_method == '60' or order.payment_method == '62' or order.payment_method == '63' %} 前往支付平台付款 {% elif order.payment_method or order.shipping_method == '1' %}
{% csrf_token %}
{% endif %}
{% endif %} {% for num,txt in payment_info %} {% if order.payment_method == num %}
{{ txt|linebreaks }}
{% endif %} {% if 'cz' in order.payment_method %} {% if '10' == num %}
{{ txt|linebreaks }}
{% endif %} {% endif %} {% endfor %}
{% endblock %} {% block js_extension %} {% endblock %}