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
commit 48ba29b647
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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";