2015-09-16 13:22:52 +00:00
|
|
|
|
{% from "erpnext/templates/includes/macros.html" import product_image_square %}
|
|
|
|
|
|
|
|
|
|
{% macro item_name_and_description(d) %}
|
2016-05-02 06:13:44 +00:00
|
|
|
|
<div class="row item_name_and_description">
|
2015-09-16 13:22:52 +00:00
|
|
|
|
<div class="col-xs-4 col-sm-2 order-image-col">
|
|
|
|
|
<div class="order-image">
|
2016-11-16 09:47:55 +00:00
|
|
|
|
{{ product_image_square(d.thumbnail or d.image) }}
|
2015-09-16 13:22:52 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-8 col-sm-10">
|
|
|
|
|
{{ d.item_code }}
|
2019-03-19 06:18:32 +00:00
|
|
|
|
<div class="text-muted small item-description">
|
|
|
|
|
{{ html2text(d.description) | truncate(140) }}
|
|
|
|
|
</div>
|
2015-09-16 13:22:52 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-06-22 10:16:38 +00:00
|
|
|
|
{% endmacro %}
|
2016-11-14 07:43:53 +00:00
|
|
|
|
|
2016-06-22 10:16:38 +00:00
|
|
|
|
{% macro item_name_and_description_cart(d) %}
|
2016-05-02 06:13:44 +00:00
|
|
|
|
<div class="row item_name_dropdown">
|
|
|
|
|
<div class="col-xs-4 col-sm-4 order-image-col">
|
|
|
|
|
<div class="order-image">
|
2016-11-16 09:47:55 +00:00
|
|
|
|
{{ product_image_square(d.thumbnail or d.image) }}
|
2016-05-12 09:52:59 +00:00
|
|
|
|
</div>
|
2016-05-02 06:13:44 +00:00
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-8 col-sm-8">
|
2018-02-12 05:58:57 +00:00
|
|
|
|
{{ d.item_name|truncate(25) }}
|
2016-06-22 10:16:38 +00:00
|
|
|
|
<div class="input-group number-spinner">
|
|
|
|
|
<span class="input-group-btn">
|
2019-03-19 06:18:32 +00:00
|
|
|
|
<button class="btn btn-light cart-btn" data-dir="dwn">
|
2016-06-22 10:16:38 +00:00
|
|
|
|
–</button>
|
|
|
|
|
</span>
|
2016-11-14 07:43:53 +00:00
|
|
|
|
<input class="form-control text-right cart-qty"
|
|
|
|
|
value = "{{ d.get_formatted('qty') }}"
|
|
|
|
|
data-item-code="{{ d.item_code }}">
|
2016-06-22 10:16:38 +00:00
|
|
|
|
<span class="input-group-btn">
|
2019-03-19 06:18:32 +00:00
|
|
|
|
<button class="btn btn-light cart-btn" data-dir="up">
|
2016-06-22 10:16:38 +00:00
|
|
|
|
+</button>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
2016-05-02 06:13:44 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-06-22 10:21:42 +00:00
|
|
|
|
{% endmacro %}
|