{% extends "base.html" %} {% block content %} {% include "stock/loc_link.html" with location=item.location %}

Stock entry details

{% if item.belongs_to %} {% elif item.location %} {% endif %} {% if item.serial %} {% endif %} {% if item.batch %} {% endif %} {% if item.customer %} {% endif %} {% if item.URL %} {% endif %} {% if item.supplier_part %} {% endif %} {% if item.stocktake_date %} {% endif %} {% if item.notes %} {% endif %}
Part {{ item.part.name }}
Belongs To {{ item.belongs_to }}
Location {{ item.location.name }}
Serial {{ item.serial }}
Batch {{ item.batch }}
Customer {{ item.customer.name }}
Quantity {{ item.quantity }}
URL {{ item.URL }}
Supplier Part {{ item.supplier_part.SKU }}
Updated {{ item.updated }}
Stocktake {{ item.stocktake_date }} {{ item.stocktake_user }}
Status {{ item.get_status_display }}
Notes {{ item.notes }}
{% if item.has_tracking_info %}

Stock Tracking

{% endif %}
{% endblock %}