mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 11:36:44 +00:00
Show the build item on the stock-item page (if applicable)
This commit is contained in:
parent
c45c4e236e
commit
7db938eda0
@ -90,6 +90,12 @@
|
|||||||
<td>{{ item.batch }}</td>
|
<td>{{ item.batch }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if item.build %}
|
||||||
|
<tr>
|
||||||
|
<td>Build</td>
|
||||||
|
<td><a href="{% url 'build-detail' item.build.id %}">{{ item.build }}</a></td>
|
||||||
|
</tr>
|
||||||
|
{% endif %}
|
||||||
{% if item.purchase_order %}
|
{% if item.purchase_order %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>Purchase Order</td>
|
<td>Purchase Order</td>
|
||||||
|
1
Makefile
1
Makefile
@ -14,6 +14,7 @@ migrate:
|
|||||||
python3 InvenTree/manage.py makemigrations stock
|
python3 InvenTree/manage.py makemigrations stock
|
||||||
python3 InvenTree/manage.py makemigrations build
|
python3 InvenTree/manage.py makemigrations build
|
||||||
python3 InvenTree/manage.py makemigrations order
|
python3 InvenTree/manage.py makemigrations order
|
||||||
|
python3 InvenTree/manage.py migrate
|
||||||
python3 InvenTree/manage.py migrate --run-syncdb
|
python3 InvenTree/manage.py migrate --run-syncdb
|
||||||
python3 InvenTree/manage.py check
|
python3 InvenTree/manage.py check
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user