Skip to content

Commit

Permalink
Add "required for orders" to CUI
Browse files Browse the repository at this point in the history
  • Loading branch information
SchrodingersGat committed Aug 20, 2024
1 parent 7e09833 commit a61b977
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/backend/InvenTree/part/templates/part/part_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,13 @@ <h5>
<td>{% decimal on_order %} {% include "part/part_units.html" %}</td>
</tr>
{% endif %}
{% if required > 0 %}
<tr>
<td><span class='fas fa-clipboard-check'></span></td>
<td>{% trans "Required for Orders" %}</td>
<td>{% decimal required %}</td>
</tr>
{% endif %}
{% if part.component %}
{% if required_build_order_quantity > 0 or allocated_build_order_quantity > 0 %}
<tr>
Expand Down

0 comments on commit a61b977

Please sign in to comment.