diff --git a/InvenTree/InvenTree/static/css/inventree.css b/InvenTree/InvenTree/static/css/inventree.css index e4d12576fa..41e0937a8b 100644 --- a/InvenTree/InvenTree/static/css/inventree.css +++ b/InvenTree/InvenTree/static/css/inventree.css @@ -960,4 +960,21 @@ input[type="date"].form-control, input[type="time"].form-control, input[type="da .sidebar-icon { min-width: 19px; +} + +.row.full-height { + display: flex; + flex-wrap: wrap; +} + +.row.full-height > [class*='col-'] { + display: flex; + flex-direction: column; +} + +a.anchor { + display: block; + position: relative; + top: -60px; + visibility: hidden; } \ No newline at end of file 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 %} | -