2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 03:00:54 +00:00

Display a sub-list of stock items which are allocated to a SalseOrderLineItem

This commit is contained in:
Oliver Walters
2020-04-21 21:38:04 +10:00
parent b40234e403
commit cb636e000d
5 changed files with 93 additions and 5 deletions

View File

@ -5,10 +5,10 @@
{% load i18n %}
{% block content %}
{% if item.sales_order %}
{% if item.sales_order_line %}
<div class='alert alert-block alert-info'>
{% trans "This stock item is allocated to " %}
<a href="{% url 'so-detail' item.sales_order.order.id %}"><b>{{ item.sales_order.order }}</b></a>
{% trans "This stock item is allocated to Sales Order" %}
<a href="{% url 'so-detail' item.sales_order_line.order.id %}"><b>{{ item.sales_order_line.order }}</b></a>
</div>
{% endif %}