{% extends "part/part_base.html" %} {% load static %} {% block details %} {% include 'part/tabs.html' with tab='detail' %}

Part Details


{% if part.IPN %} {% endif %} {% if part.variant_of %} {% endif %} {% if part.keywords %} {% endif %} {% if part.URL %} {% endif %} {% if part.default_location %} {% endif %} {% if part.default_supplier %} {% endif %} {% if part.minimum_stock > 0 %} {% endif %}
Part name {{ part.full_name }}
IPN {{ part.IPN }}
Description {{ part.description }}
Variant Of {{ part.variant_of.full_name }}
Keywords {{ part.keywords }}
URL {{ part.URL }}
Category {% if part.category %} {{ part.category.pathstring }} {% endif %}
Default Location {{ part.default_location.pathstring }}
Default Supplier {{ part.default_supplier.supplier.name }} | {{ part.default_supplier.SKU }}
Units {{ part.units }}
Minimum Stock {{ part.minimum_stock }}
{% if part.assembly %} {% endif %} {% if part.component %} {% endif %} {% if part.trackable %} {% endif %} {% if part.purchaseable %} {% endif %} {% if part.salable %} {% endif %}
Assembly This part can be assembled from other parts
Component This part can be used in assemblies
Trackable Stock for this part will be tracked by (serial or batch)
Purchaseable This part can be purchased from external suppliers
Salable This part can be sold to customers
{% if part.notes %}
Notes
{{ part.notes }}
{% endif %} {% endblock %} {% block js_load %} {{ block.super }} {% endblock %} {% block js_ready %} {{ block.super }} $("#duplicate-part").click(function() { launchModalForm( "{% url 'part-duplicate' part.id %}", { follow: true, } ); }); $("#edit-part").click(function() { launchModalForm( "{% url 'part-edit' part.id %}", { reload: true, }); }); $('#activate-part').click(function() { showQuestionDialog( 'Activate Part?', 'Are you sure you wish to reactivate {{ part.full_name }}?', { accept_text: 'Activate', accept: function() { inventreePut( "{% url 'api-part-detail' part.id %}", { active: true, }, { method: 'PATCH', reloadOnSuccess: true, } ); } }, ); }); $('#deactivate-part').click(function() { showQuestionDialog( 'Deactivate Part?', `Are you sure you wish to deactivate {{ part.full_name }}?
`, { accept_text: 'Deactivate', accept: function() { inventreePut( "{% url 'api-part-detail' part.id %}", { active: false, }, { method: 'PATCH', reloadOnSuccess: true, } ); } } ); }); $('#delete-part').click(function() { launchModalForm( "{% url 'part-delete' part.id %}", { redirect: {% if part.category %}"{% url 'category-detail' part.category.id %}"{% else %}"{% url 'part-index' %}"{% endif %} }); }); {% endblock %}