{% extends "two_column.html" %} {% load static %} {% load inventree_extras %} {% load status_codes %} {% load i18n %} {% block page_title %} InvenTree | {% trans "Stock Item" %} - {{ item }} {% endblock %} {% block sidenav %}
{% endblock %} {% block pre_content %} {% include 'stock/loc_link.html' with location=item.location %} {% for allocation in item.sales_order_allocations.all %}Part | {% include "hover_image.html" with image=item.part.image hover=True %} {{ item.part.full_name }} | ||
{% trans "Belongs To" %} | {{ item.belongs_to }} | ||
{% trans "Sales Order" %} | {{ item.sales_order.reference }} - {{ item.sales_order.customer.name }} | ||
{% trans "Build Order" %} | {{ item.build_order }} | ||
{% trans "Location" %} | {{ item.location.name }} | ||
{% trans "Unique Identifier" %} | {{ item.uid }} | ||
{% trans "Serial Number" %} | {{ item.serial }} | ||
{% trans "Quantity" %} | {% decimal item.quantity %} {% if item.part.units %}{{ item.part.units }}{% endif %} | ||
{% trans "Batch" %} | {{ item.batch }} | ||
{% trans "Build" %} | {{ item.build }} | ||
{% trans "Purchase Order" %} | {{ item.purchase_order }} | ||
{% trans "Parent Item" %} | {% trans "Stock Item" %} #{{ item.parent.id }} | ||
{% trans "External Link" %} | {{ item.link }} | ||
{% trans "Supplier" %} | {{ item.supplier_part.supplier.name }} | ||
{% trans "Supplier Part" %} | {{ item.supplier_part.SKU }} | ||
{% trans "Last Updated" %} | {{ item.updated }} | ||
{% trans "Last Stocktake" %} | {% if item.stocktake_date %}{{ item.stocktake_date }} {{ item.stocktake_user }} | {% else %}{% trans "No stocktake performed" %} | {% endif %}|
{% trans "Status" %} | {% stock_status_label item.status %} |