{% extends "stock/stock_app_base.html" %} {% load static %} {% load inventree_extras %} {% load status_codes %} {% load i18n %} {% block content %}
{{ item.part.full_name}} # {{ item.serial }}
{% else %}{% decimal item.quantity %} × {{ item.part.full_name }}
{% endif %}
Part | {% include "hover_image.html" with image=item.part.image hover=True %} {{ item.part.full_name }} | ||
{% trans "Belongs To" %} | {{ item.belongs_to }} | ||
{% trans "Location" %} | {{ item.location.name }} | ||
{% 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 "Customer" %} | {{ item.customer.name }} | ||
{% 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 item.status %} |