Back to Erpnext

{{ name }}

erpnext/templates/generators/bom.html

16.21.01.3 KB
Original Source

{% extends "templates/web.html" %} {% block title %} {{ title }} {% endblock %} {% block breadcrumbs %} {% include "templates/includes/breadcrumbs.html" %} {% endblock %} {% block page_content %} {% from "erpnext/templates/includes/macros.html" import product_image %} {% from "erpnext/templates/includes/macros.html" import media_image %}

{{ name }}

{{ _("Item") }}: {{ item_name }}

{{ media_image(website_image, item_name, "product-full-image") }}

{{ _("Quantity") }}: {{ quantity }}

{% if show_items -%}

{{ _("Items") }}


{% for d in items -%}

{{ media_image(d.image, d.item_name, "product-full-image") }}

{{ d.item_name }} {% if d.item_name != d.item_code -%} {{ d.item_code }} {%- endif %}
{{ d.description }}

{{ _("Qty") }}: {{ d.qty }}


{%- endfor %}

{%- endif %} {% if show_operations -%}

{{ _("Operations") }}


{% for d in operations -%}

{{ media_image(d.image, d.operation, "product-full-image") }}

{{ d.operation }}

{{ d.description }}

{{ _("Workstation") }}
{{ d.workstation }}

{{ _("Time(in mins)") }}

{{ d.time_in_mins }}


{%- endfor %}

{%- endif %}

{{ _("Description") }}

{{ web_long_description or _("No description given") }}

{% endblock %}