Skip to content

Commit

Permalink
Fixed missing code in previous update
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcameron committed Jan 7, 2022
1 parent eb12549 commit 87a825c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<td>{{debtor.display_name }}</td>
{{#if ../details.showDetailedView}}<td>{{date debtor.latestInvoiceDate}}</td>{{/if}}
{{#if ../details.showDetailedView}}<td>{{date debtor.latestCashDate}}</td>{{/if}}
<td class="text-right">{{currency debtor.balance ../metadata.enterprise.currency_id}}</td>
<td class="text-right">{{currency (multiply debtor.balance ../rate) ../currencyId}}</td>
</tr>
{{else}}
{{> emptyTable columns=5}}
Expand All @@ -54,7 +54,7 @@
<tr style="background-color: #ddd;">
<th colspan="2">{{translate "TABLE.COLUMNS.TOTAL"}} {{aggregates.numDebtors}} {{translate "TABLE.AGGREGATES.RECORDS"}}</th>
{{#if details.showDetailedView}}<th colspan="2"></th>{{/if}}
<th class="text-right">{{currency aggregates.balance metadata.enterprise.currency_id}}</th>
<th class="text-right">{{currency (multiply aggregates.balance rate) currencyId}}</th>
</tr>
</tfoot>
{{/if}}
Expand Down

0 comments on commit 87a825c

Please sign in to comment.