2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-14 23:51:08 +00:00

Add 'revision' field to part

- e.g. different versions of a product
- Can keep old versions in database and mark as inactive
This commit is contained in:
Oliver Walters
2019-06-20 21:46:16 +10:00
parent 8328e7e13c
commit a5306ec81b
6 changed files with 48 additions and 2 deletions

View File

@@ -13,7 +13,7 @@
<table class='table table-striped'>
<tr>
<td><b>Part name</b></td>
<td>{{ part.full_name }}</td>
<td>{{ part.name }}</td>
</tr>
{% if part.IPN %}
<tr>
@@ -21,6 +21,12 @@
<td>{{ part.IPN }}</td>
</tr>
{% endif %}
{% if part.revision %}
<tr>
<td><b>Revision</b></td>
<td>{{ part.revision }}</td>
</tr>
{% endif %}
<tr>
<td><b>Description</b></td>
<td>{{ part.description }}</td>