{% load i18n %} {% load servo_tags %} {% with order.serviceorderitem_set.all as products %}
{% trans "Product" %} | {% trans "Amount" %} | {% trans "Price Category" %} | {% trans "Price" %} | {% trans "Total" %} | ||
---|---|---|---|---|---|---|
{{ product.code }} {{ item.title }}
{% if item.sn or item.kbb_sn %}
{% trans "Serial Number" %}: {{ item.sn|default:"-" }}{% if item.kbb_sn %}, KBB: {{ item.kbb_sn }}{% endif %} {% endif %} {% if product.is_apple_part %} {% for repair in order.get_repairs %}
{{ repair.confirmation }}
{% if item in repair.get_products %}
{% with item.get_part as part %}
{% include "repairs/part_menu.html" %}
{% endwith %}
{% else %}
{% endif %}
{% endfor %}
{% endif %}
|
{{ item.amount }} | {{ item.get_price_category_display }} | {{ item.price|currency }} | {{ item.total_gross|currency }} | {% if order.is_editable %} {% endif %} |