{% extends "part/part_base.html" %} {% load static %} {% load i18n %} {% load crispy_forms_tags %} {% load inventree_extras %} {% block menubar %} {% include 'part/navbar.html' with tab='order-prices' %} {% endblock %} {% block heading %} {% trans "Order Price Information" %} {% endblock %} {% block details %} {% default_currency as currency %} {% crispy form %}
{% trans 'Supplier Pricing' %} | {% trans 'Unit Cost' %} | Min: {% include "price.html" with price=min_unit_buy_price %} | Max: {% include "price.html" with price=max_unit_buy_price %} |
{% trans 'Total Cost' %} | Min: {% include "price.html" with price=min_total_buy_price %} | Max: {% include "price.html" with price=max_total_buy_price %} | |
{% trans 'No supplier pricing available' %} | |||
{% trans 'BOM Pricing' %} | {% trans 'Unit Cost' %} | Min: {% include "price.html" with price=min_unit_bom_price %} | Max: {% include "price.html" with price=max_unit_bom_price %} |
{% trans 'Total Cost' %} | Min: {% include "price.html" with price=min_total_bom_price %} | Max: {% include "price.html" with price=max_total_bom_price %} | |
{% trans 'Note: BOM pricing is incomplete for this part' %} | |||
{% trans 'No BOM pricing available' %} | |||
{% trans 'Sale Price' %} | {% trans 'Unit Cost' %} | {% include "price.html" with price=unit_part_price %} | |
{% trans 'Total Cost' %} | {% include "price.html" with price=total_part_price %} |