diff --git a/InvenTree/stock/templates/stock/item_base.html b/InvenTree/stock/templates/stock/item_base.html index 9785b78850..f339258d0f 100644 --- a/InvenTree/stock/templates/stock/item_base.html +++ b/InvenTree/stock/templates/stock/item_base.html @@ -5,6 +5,12 @@ {% load i18n %} {% block content %} +{% if item.sales_order %} +
+ {% trans "This stock item is allocated to " %} + {{ item.sales_order.order }} +
+{% endif %}