Merge pull request #22693 from surajshetty3416/fix-financial-statement-print-format

fix: Show total row in print format of financial statement
This commit is contained in:
Deepesh Garg
2020-07-16 11:32:34 +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";