{% from "erpnext/templates/includes/macros.html" import product_image %} {% macro item_name_and_description(d) %}
{% if d.thumbnail or d.image %} {{ product_image(d.thumbnail or d.image, no_border=True) }} {% else %}
{{ frappe.utils.get_abbr(d.item_name) or "NA" }}
{% endif %}
{{ d.item_code }}
{{ html2text(d.description) | truncate(140) }}
{{ _("Qty ") }}({{ d.get_formatted("qty") }})
{% endmacro %} {% macro item_name_and_description_cart(d) %}
{{ product_image_square(d.thumbnail or d.image) }}
{{ d.item_name|truncate(25) }}
{% endmacro %}