{% extends "modal_form.html" %}
{% load i18n inventree_extras %}
{% block pre_form_content %}
{% default_currency as currency %}
{% settings_value "PART_INTERNAL_PRICE" as show_internal_price %}
{% trans 'Part' %} |
{{ part }} |
{% trans 'Quantity' %} |
{{ quantity }} |
{% if part.supplier_count > 0 %}
{% trans 'Supplier Pricing' %}
{% if min_total_buy_price %}
{% trans 'Unit Cost' %} |
Min: {% include "price.html" with price=min_unit_buy_price %} |
Max: {% include "price.html" with price=max_unit_buy_price %} |
{% if quantity > 1 %}
{% trans 'Total Cost' %} |
Min: {% include "price.html" with price=min_total_buy_price %} |
Max: {% include "price.html" with price=max_total_buy_price %} |
{% endif %}
{% else %}
{% trans 'No supplier pricing available' %}
|
{% endif %}
{% endif %}
{% if part.bom_count > 0 %}
{% trans 'BOM Pricing' %}
{% if min_total_bom_price %}
{% trans 'Unit Cost' %} |
Min: {% include "price.html" with price=min_unit_bom_price %} |
Max: {% include "price.html" with price=max_unit_bom_price %} |
{% if quantity > 1 %}
{% trans 'Total Cost' %} |
Min: {% include "price.html" with price=min_total_bom_price %} |
Max: {% include "price.html" with price=max_total_bom_price %} |
{% endif %}
{% if part.has_complete_bom_pricing == False %}
{% trans 'Note: BOM pricing is incomplete for this part' %}
|
{% endif %}
{% else %}
{% trans 'No BOM pricing available' %}
|
{% endif %}
{% endif %}
{% if show_internal_price and roles.sales_order.view %}
{% if total_internal_part_price %}
{% trans 'Internal Price' %}
{% trans 'Unit Cost' %} |
{% include "price.html" with price=unit_internal_part_price %} |
{% trans 'Total Cost' %} |
{% include "price.html" with price=total_internal_part_price %} |
{% endif %}
{% endif %}
{% if total_part_price %}
{% 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 %} |
{% endif %}
{% if min_unit_buy_price or min_unit_bom_price %}
{% else %}
{% trans 'No pricing information is available for this part.' %}
{% endif %}
{% endblock %}