{% extends 'bom/bom-base.html' %} {% load static %} {% load djmoney %} {% block head-title %}{{ part.full_part_number }}{% if part_revision %} {{ part_revision.synopsis }}{% endif %}{% endblock %} {% block head %} {% endblock %} {% block content %} {% include 'bom/bom-action-btn.html' with profile=profile %}

{{ part.full_part_number }}

{% if part_revision %}
{{ part_revision.get_configuration_display }} {% endif %}
{% if part_revision %}
{% csrf_token %}
{{ part_info_form }}
{% endif %}
{% if perms.bom.edit_part and part_revision %} more_vert {% elif perms.bom.create_part and not part_revision %} addCreate Revision {% endif %}

Specifications


  • Item Details
  • {% if organization.number_scheme == 'S' %}
    Item Class:
    {{ part.number_class }}
    {% endif %}
    Number:
    {{ part.full_part_number }} {% if perms.bom.edit_part %}  [edit] {% endif %}
    Synopsis:
    {{ part_revision.synopsis }}
    Configuration:
    {{ part_revision.get_configuration_display|default:'n/a' }} {% if part_revision %}(as of ){% endif %}
    {% for property in part_revision.properties.all %}
    {{ property.property_definition.name }}:
    {{ property.value_raw }}{% if property.unit_definition %} {{ property.unit_definition.symbol }}{% endif %}
    {% endfor %}
     Files:
  • Manufacturer & Sourcing
  • Quote Unit Cost:
    {{ indented_bom.unit_cost|default_if_none:'-' }}
    Subparts without costs:
    {{ indented_bom.missing_item_costs }}
    Quote Total NRE:
    {{ indented_bom.nre|default_if_none:'-' }}
    Order Total (w/ MOQs):
    {{ indented_bom.out_of_pocket_cost|default_if_none:'-' }}

Bill of Materials

Indented | Flat
{% include 'bom/components/bom-indented.html' with order_by=order_by bom_items=indented_bom.parts part=part part_revision=part_revision profile=profile %}

Where Used


  • my_locationWhere this revision is used
    {% for used_part in where_used %} {% empty %} {% endfor %}
    Part Number Synopsis Rev Manufacturer MPN
    {{ used_part.part.full_part_number }} {{ used_part.synopsis }} {{ used_part.revision }} {{ used_part.part.primary_manufacturer_part.manufacturer.name }} {{ used_part.part.primary_manufacturer_part.manufacturer_part_number }}
    This part is not currently used in any of your other parts. To add a part to a subassembly or assembly, go to the parent part's Bill of Materials, and click "Manage", then "Edit".
  • location_searchingAll part usages
    {% for used_part in where_used_part %} {% empty %} {% endfor %}
    Part Number Synopsis Rev Manufacturer MPN
    {{ used_part.part.full_part_number }} {{ used_part.synopsis }} {{ used_part.revision }} {{ used_part.part.primary_manufacturer_part.manufacturer.name }} {{ used_part.part.primary_manufacturer_part.manufacturer_part_number }}
    This part is not currently used in any of your other parts. {% if perms.bom.part_edit %} To add a part to a subassembly or assembly, go to the parent part's Bill of Materials, and click "Manage", then "Edit". {% endif %}

Sourcing

{% include 'bom/components/manufacturer-part-list.html' with manufacturer_parts=part.manufacturer_parts part_revision=part_revision profile=profile %} {% if perms.bom.manage_sourcing %} {% endif %}
{% endblock %} {% block bom-script %} {% endblock bom-script %}