Skip to content

Commit

Permalink
Properly sort comparisons in CSV Balance Sheet report
Browse files Browse the repository at this point in the history
  • Loading branch information
ylavoie committed Jun 12, 2024
1 parent e76ddf4 commit 708d4f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/demo/balance_sheet.csv
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ account,description,is_heading<?lsmb
<?lsmb report.rheads.ids.$row.props.account_number -?>,"<?lsmb report.rheads.ids.$row.props.account_description ?>",<?lsmb IF report.rheads.ids.$row.props.account_type == 'H' -?>Y<?lsmb ELSE ?>N<?lsmb END ?>,<?lsmb
PARENT = report.rheads.ids.$row.parent_id ;
report.rheads.ids.$PARENT.props.account_number ?><?lsmb
FOREACH col IN report.cheads.ids.keys ; -?>
FOREACH col IN report.sorted_col_ids ; -?>
,<?lsmb report.cells.$row.$col -?><?lsmb
END; ?>
<?lsmb END; -?>

0 comments on commit 708d4f0

Please sign in to comment.