{% extends "industry_reforged/base.html" %} {% load i18n humanize %} {% load industry_tags %} {% block details %}
{% trans "Review the order details and the estimated BOM cost, then provide a final quote." %}
{% if order.child_orders.exists or order.parent_order %}{% trans "This order is part of a larger production group. The final unified quote sent to the customer will be the sum of all orders in this group:" %} {% if order.parent_order %}{{ order.parent_order.grand_total|eve_isk }}{% else %}{{ order.grand_total|eve_isk }}{% endif %}
{% with family_parent=order.parent_order|default:order %}| {% trans "Item" %} | {% trans "Quantity" %} | {% trans "Discount" %} | {% trans "Unit Price" %} | {% trans "Total" %} |
|---|---|---|---|---|
|
|
{{ item.quantity }} | {% if item.discount_applied > 0 %} {{ item.discount_applied }}% {% else %} - {% endif %} |
{% if item.discount_applied > 0 %}
{% endif %} {{ item.price_per_unit|eve_isk }} |
{{ item.line_total|eve_isk }} |
| No items found. | ||||
| {% trans "Target Facility:" %} | {% if child.target_facility %}{{ child.target_facility.name }}{% else %}{% trans "Default" %}{% endif %} | |||
| {% trans "Child Order Total:" %} | {{ child.total_price|eve_isk }} | |||
{{ order.fit.raw_fit_text }}
{% endif %}