Merge pull request #23565 from marination/v12-fix-financial-statement-print-format

fix: Show total row in print format of financial statement
This commit is contained in:
Marica
2020-10-09 14:50:29 +05:30
committed by GitHub

View File

@@ -44,7 +44,7 @@
</tr>
</thead>
<tbody>
{% for(let j=0, k=data.length-1; j<k; j++) { %}
{% for(let j=0, k=data.length; j<k; j++) { %}
{%
var row = data[j];
var row_class = data[j].parent_account ? "" : "financial-statements-important";