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 %}