From 6bf4140e5a4f311f4b289521c5c83bf6d99848db Mon Sep 17 00:00:00 2001 From: eeintech Date: Fri, 9 Apr 2021 16:55:05 -0400 Subject: [PATCH] Fixed transfer stock action in template --- InvenTree/stock/templates/stock/item_base.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/InvenTree/stock/templates/stock/item_base.html b/InvenTree/stock/templates/stock/item_base.html index a72b727f69..04518a0c65 100644 --- a/InvenTree/stock/templates/stock/item_base.html +++ b/InvenTree/stock/templates/stock/item_base.html @@ -165,13 +165,13 @@ InvenTree | {% trans "Stock Item" %} - {{ item }} {% if item.in_stock %}
  • {% trans "Remove stock" %}
  • {% endif %} - {% if item.in_stock and item.can_adjust_location %} -
  • {% trans "Transfer stock" %}
  • - {% endif %} {% if item.in_stock and item.part.trackable %}
  • {% trans "Serialize stock" %}
  • {% endif %} {% endif %} + {% if item.in_stock and item.can_adjust_location %} +
  • {% trans "Transfer stock" %}
  • + {% endif %} {% if item.in_stock and item.can_adjust_location and item.part.salable and not item.customer %}
  • {% trans "Assign to customer" %}
  • {% endif %}