diff --git a/InvenTree/part/templates/part/internal_prices.html b/InvenTree/part/templates/part/internal_prices.html deleted file mode 100644 index 2f54f3bb64..0000000000 --- a/InvenTree/part/templates/part/internal_prices.html +++ /dev/null @@ -1,122 +0,0 @@ -{% extends "part/part_base.html" %} -{% load static %} -{% load i18n %} -{% load inventree_extras %} - -{% block menubar %} -{% include 'part/navbar.html' with tab='internal-prices' %} -{% endblock %} - -{% block heading %} -{% trans "Internal Price Information" %} -{% endblock %} - -{% block details %} -{% settings_value "PART_INTERNAL_PRICE" as show_internal_price %} -{% if show_internal_price and roles.sales_order.view %} -
{% 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 '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 %} | -|
{% 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 %} | -