brotherton-erpnext/erpnext/templates/print_formats/includes/item_table_description.html
2020-11-10 17:23:24 +05:30

48 lines
1.6 KiB
HTML

{%- set compact = print_settings.compact_item_print -%}
{%- set compact_fields = parent_doc.flags.compact_item_fields -%}
{%- set display_columns = visible_columns|map(attribute="fieldname")| list -%}
{%- set columns = parent_doc.flags.format_columns(display_columns, compact_fields) -%}
{% if doc.in_format_data("image") and doc.get("image") and "image" in display_columns -%}
<div class="pull-left" style="max-width: 40%; margin-right: 10px;">
<img class="print-item-image" src="{{ doc.image }}" alt="">
</div>
{%- endif %}
<div>
{% if doc.in_format_data("item_code") and "item_code" in display_columns -%}
{% if compact %}
<div class="primary compact-item">
{{ _(doc.item_code) }}
</div>
{% endif %}
{%- endif %}
{%- if doc.in_format_data("item_name") and "item_name" in display_columns and
not (doc.in_format_data("item_code") and doc.item_code == doc.item_name) -%}
<div class="primary">{{ doc.get_formatted("item_name", translated=True) }}</div>
{%- endif %}
{% if (doc.in_format_data("description") and doc.description and
(
(
(not doc.in_format_data("item_code") or doc.is_print_hide("item_code")) and
(not doc.in_format_data("item_name") or doc.is_print_hide("item_name"))
) or not (doc.item_code == doc.item_name == doc.description)
))
-%}
<p>{{ doc.get_formatted("description", translated=True) }}</p>
{%- endif %}
{% if compact -%}
{%- for fieldname in columns -%}
{% if doc.get(fieldname) and doc.in_format_data(fieldname) -%}
<p>
<strong>{{ _(doc.meta.get_label(fieldname)) }}:</strong>
{{ doc.get_formatted(fieldname, translated=True) }}
</p>
{% endif %}
{%- endfor -%}
{%- endif %}
</div>