brotherton-erpnext/erpnext/templates/includes/rfq/rfq_items.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
1.2 KiB
HTML
Raw Normal View History

2016-03-03 08:30:35 +00:00
{% from "erpnext/templates/includes/rfq/rfq_macros.html" import item_name_and_description %}
{% for d in doc.items %}
<div class="rfq-item">
<div class="row">
<div class="col-sm-5 col-12" style="margin-bottom: 10px;margin-top: 5px;">
2016-03-03 08:30:35 +00:00
{{ item_name_and_description(d, doc) }}
</div>
<!-- <div class="col-sm-2 col-2" style="margin-bottom: 10px;">
2016-03-03 08:30:35 +00:00
<textarea type="text" style="margin-top: 5px;" class="input-with-feedback form-control rfq-offer_detail" ></textarea>
</div> -->
<div class="col-sm-2 col-4 text-right">
2016-09-01 12:31:27 +00:00
<input type="text" class="form-control text-right rfq-qty" style="margin-top: 5px;display: inline-block"
2016-03-03 08:30:35 +00:00
value = "{{ d.get_formatted('qty') }}"
data-idx="{{ d.idx }}">
<p class="text-muted small" style="margin-top: 10px;">
2016-09-01 12:31:27 +00:00
{{_("UOM") + ":"+ d.uom}}
2016-03-03 08:30:35 +00:00
</p>
</div>
<div class="col-sm-2 col-4 text-right">
2016-09-01 12:31:27 +00:00
<input type="text" class="form-control text-right rfq-rate"
style="margin-top: 5px;display: inline-block" value="0.00"
2016-03-03 08:30:35 +00:00
data-idx="{{ d.idx }}">
</div>
<div class="col-sm-3 col-4 text-right" style="padding-top: 9px;">
{{doc.currency_symbol}} <span class="rfq-amount" data-idx="{{ d.idx }}">0.00</span>
2016-03-03 08:30:35 +00:00
</div>
</div>
</div>
{% endfor %}