mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 07:54:46 +00:00
[fix] Financial report column values during print (#13627)
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
</td>
|
||||
{% for(var i=2, l=report.columns.length; i<l; i++) { %}
|
||||
<td class="text-right">
|
||||
{% var fieldname = report.columns[i].field; %}
|
||||
{% var fieldname = report.columns[i].field || report.columns[i].fieldname; %}
|
||||
{% if (!is_null(row[fieldname])) { %}
|
||||
{%= format_number(row[fieldname], null)%}
|
||||
{% } %}
|
||||
|
||||
Reference in New Issue
Block a user