brotherton-erpnext/erpnext/public/js/pos/pos_item.html

32 lines
944 B
HTML
Raw Normal View History

2017-03-06 12:31:58 +00:00
<div class="pos-item-wrapper image-view-item" data-item-code={{item_code}}>
<div class="image-view-header doclist-row">
<div class="list-value">
<a class="grey list-id" data-name="{{item_code}}" title="{{ item_name || item_code}}">{{item_name || item_code}}</a>
2016-04-07 09:55:43 +00:00
</div>
2015-01-05 10:49:12 +00:00
</div>
2017-03-06 12:31:58 +00:00
<div class="image-view-body">
<a data-item-code="{{ item_code }}"
title="{{ item_name || item_code }}"
>
<div class="image-field"
style="
{% if (!item_image) { %}
background-color: #fafbfc;
{% } %}
border: 0px;"
>
{% if (!item_image) { %}
<span class="placeholder-text">
{%= frappe.get_abbr(item_name || item_code) %}
</span>
{% } %}
{% if (item_image) { %}
<img src="{{ item_image }}" alt="{{item_name || item_code}}">
{% } %}
<button class="btn btn-default zoom-view hide" data-name="{{item_code}}">
<i class="fa fa-search-plus"></i>
</button>
</div>
</a>
</div>
2016-04-07 09:55:43 +00:00
</div>