2014-12-19 10:50:32 +00:00
|
|
|
<div class="row pos-bill-row pos-bill-item" data-item-code="{%= item_code %}">
|
2017-02-01 12:37:22 +00:00
|
|
|
<div class="col-xs-4"><h6>{%= item_code || "" %}{%= __(item_name) || "" %}</h6></div>
|
|
|
|
<div class="col-xs-3">
|
2014-12-19 10:50:32 +00:00
|
|
|
<div class="row pos-qty-row">
|
2017-01-12 09:52:02 +00:00
|
|
|
<div class="col-xs-2 text-center pos-qty-btn" data-action="decrease-qty"><i class="fa fa-minus text-muted" style="font-size:12px"></i></div>
|
2014-12-19 10:50:32 +00:00
|
|
|
<div class="col-xs-8">
|
2015-04-21 09:08:48 +00:00
|
|
|
<div>
|
2017-02-01 12:37:22 +00:00
|
|
|
<input type="tel" value="{%= qty %}" class="form-control pos-item-qty text-right">
|
2015-04-21 09:08:48 +00:00
|
|
|
</div>
|
|
|
|
{% if(actual_qty != null) { %}
|
|
|
|
<div style="margin-top: 5px;" class="text-muted small text-right">
|
2017-02-01 12:37:22 +00:00
|
|
|
{%= __("In Stock: ") %} <span>{%= actual_qty || 0.0 %}</span>
|
2015-04-21 09:08:48 +00:00
|
|
|
</div>
|
|
|
|
{% } %}
|
2014-12-19 10:50:32 +00:00
|
|
|
</div>
|
2017-01-12 09:52:02 +00:00
|
|
|
<div class="col-xs-2 text-center pos-qty-btn" data-action="increase-qty"><i class="fa fa-plus text-muted" style="font-size:12px"></i></div>
|
2014-12-19 10:50:32 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-02-01 12:37:22 +00:00
|
|
|
<div class="col-xs-2 text-right">
|
|
|
|
<div class="row input-sm">
|
|
|
|
<input type="tel" value="{%= discount_percentage %}" class="form-control text-right pos-item-discount">
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-12-19 10:50:32 +00:00
|
|
|
<div class="col-xs-3 text-right">
|
2016-12-28 09:46:49 +00:00
|
|
|
<div class="text-muted" style="margin-top: 5px;">
|
|
|
|
{% if(enabled) { %}
|
2017-02-01 12:37:22 +00:00
|
|
|
<input type="tel" value="{%= rate %}" class="form-control input-sm pos-item-rate text-right">
|
2016-12-28 09:46:49 +00:00
|
|
|
{% } else { %}
|
|
|
|
<h6>{%= format_currency(rate) %}</h6>
|
|
|
|
{% } %}
|
|
|
|
</div>
|
2016-05-20 18:25:45 +00:00
|
|
|
<p><h6>{%= amount %}</h6></p>
|
2014-12-19 10:50:32 +00:00
|
|
|
</div>
|
|
|
|
</div>
|