mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-02 03:39:11 +00:00
added listviews for sales, purchase
This commit is contained in:
committed by
Anand Doshi
parent
67af99794d
commit
18eb4f5015
@@ -1,12 +1,12 @@
|
||||
{% $.each(visible_columns || [], function(i, df) { %}
|
||||
{% var val = row.get_formatted(df.fieldname);
|
||||
{% var val = doc.get_formatted(df.fieldname);
|
||||
if(val) { %}
|
||||
<div class="row">
|
||||
<div class="col-xs-3">
|
||||
<strong>{%= __(df.label) %}:</strong>
|
||||
</div>
|
||||
<div class="col-xs-9">
|
||||
{%= row.get_formatted(df.fieldname) %}
|
||||
{%= doc.get_formatted(df.fieldname) %}
|
||||
</div>
|
||||
</div>
|
||||
{% } %}
|
||||
|
||||
Reference in New Issue
Block a user