2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00
- Can't edit build status directly
- Refresh BOM table on reload
- Hide Company tabs that are not yet functional
This commit is contained in:
Oliver Walters
2019-04-30 20:55:28 +10:00
parent fb89574c42
commit 7e7ac60a1a
4 changed files with 34 additions and 27 deletions

View File

@ -6,11 +6,13 @@
<li{% if tab == 'parts' %} class='active'{% endif %}>
<a href="{% url 'company-detail-parts' company.id %}">Supplier Parts <span class='badge'>{{ company.part_count }}</span></a>
</li>
{% if 0 %}
<li{% if tab == 'po' %} class='active'{% endif %}>
<a href="#">Purchase Orders</a>
</li>
{% endif %}
{% if company.is_customer %}
{% endif %}
{% if company.is_customer and 0 %}
<li{% if tab == 'co' %} class='active'{% endif %}>
<a href="#">Sales Orders</a>
</li>