{% extends "modal_form.html" %} {% block pre_form_content %}
Pricing information for:
{{ part }}.

Quantity

Part {{ part }}
Quantity {{ quantity }}
{% if part.supplier_count > 0 %}

Supplier Pricing

{% if min_total_buy_price %} {% if quantity > 1 %} {% endif %} {% else %} {% endif %}
Unit Cost Min: {% include "price.html" with price=min_unit_buy_price %} Max: {% include "price.html" with price=max_unit_buy_price %}
Total Cost Min: {% include "price.html" with price=min_total_buy_price %} Max: {% include "price.html" with price=max_total_buy_price %}
No supplier pricing available
{% endif %} {% if part.bom_count > 0 %}

BOM Pricing

{% if min_total_bom_price %} {% if quantity > 1 %} {% endif %} {% if part.has_complete_bom_pricing == False %} {% endif %} {% else %} {% endif %}
Unit Cost Min: {% include "price.html" with price=min_unit_bom_price %} Max: {% include "price.html" with price=max_unit_bom_price %}
Total Cost Min: {% include "price.html" with price=min_total_bom_price %} Max: {% include "price.html" with price=max_total_bom_price %}
Note: BOM pricing is incomplete for this part
No BOM pricing available
{% endif %} {% if min_unit_buy_price or min_unit_bom_price %} {% else %}
No pricing information is available for this part.
{% endif %}
{% endblock %}