{% load price_filters %} فاکتور سفارش - {{ order_number }}

فاکتور فروش

شماره سفارش: {{ order_number }}

اطلاعات مشتری

{% if user %}
نام: {{ user.first_name }} {{ user.last_name }}
ایمیل: {{ user.email|default:"---" }}
تلفن: {{ user.phone }}
{% endif %}

اطلاعات سفارش

تاریخ: {{ created_at_jalali|default:"---" }}
وضعیت پرداخت: {% if is_paid %} پرداخت شده {% else %} پرداخت نشده {% endif %}
وضعیت سفارش: {{ status }}
{% if address %}

آدرس تحویل

نام گیرنده: {{ address.name }}
آدرس: {{ address.address }}
شهر/استان: {{ address.city }}, {{ address.province }}
کد پستی: {{ address.postal_code }}
تلفن: {{ address.phone }}
{% endif %} {% for item_data in items_with_discount %} {% endfor %}
ردیف نام محصول تنوع تعداد قیمت واحد جمع تخفیف محصول تخفیف ویژه قیمت نهایی
{{ forloop.counter }} {{ item_data.item.product.product.name }} {{ item_data.item.product.title }} {{ item_data.item.quantity }} {{ item_data.unit_price|price_format }} تومان {{ item_data.price_before_discount|price_format }} تومان {% if item_data.item.discount_percent > 0 %} {{ item_data.item.discount_percent }}% ({{ item_data.discount_amount|price_format }} تومان) {% else %} --- {% endif %} {% if item_data.item.special_discount_amount > 0 %} {{ item_data.item.special_discount_amount|price_format }} تومان {% else %} --- {% endif %} {{ item_data.final_price|price_format }} تومان
تعداد کل اقلام: {{ total_items }}
۱. جمع سبد خرید (بعد از تخفیف محصولات): {{ subtotal|price_format }} تومان
۲. تخفیف محصولات: {% if items_discount_amount > 0 %} -{{ items_discount_amount|price_format }} تومان {% else %} 0 تومان {% endif %}
۳. تخفیف ویژه محصولات: {% if special_discount_total > 0 %} -{{ special_discount_total|price_format }} تومان {% else %} 0 تومان {% endif %}
{% if discount_amount > 0 %}
تخفیف کد تخفیف: -{{ discount_amount|price_format }} تومان
{% endif %}
مالیات ({{ tax_rate }}%): {{ tax|price_format }} تومان
۴. قیمت نهایی (قابل پرداخت): {{ final_price|price_format }} تومان
{% if discount_code %}

کد تخفیف استفاده شده

کد: {{ discount_code.code }}
درصد: {{ discount_code.percent }}%
{% endif %}