{% 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 %}
Unit Cost |
Min: {{ min_unit_buy_price }} |
Max: {{ max_unit_buy_price }} |
{% if quantity > 1 %}
Total Cost |
Min: {{ min_total_buy_price }} |
Max: {{ max_total_buy_price }} |
{% endif %}
{% else %}
No supplier pricing available
|
{% endif %}
{% endif %}
{% if part.bom_count > 0 %}
BOM Pricing
{% if min_total_bom_price %}
Unit Cost |
Min: {{ min_unit_bom_price }} |
Max: {{ max_unit_bom_price }} |
{% if quantity > 1 %}
Total Cost |
Min: {{ min_total_bom_price }} |
Max: {{ max_total_bom_price }} |
{% endif %}
{% if part.has_complete_bom_pricing == False %}
Note: BOM pricing is incomplete for this part
|
{% endif %}
{% else %}
No BOM pricing available
|
{% endif %}
{% endif %}
{% if min_unit_buy_price or min_unit_bom_price %}
{% else %}
No pricing information is available for this part.
{% endif %}
{% endblock %}