Skip to content

Commit

Permalink
fix: missing range for ageing summary
Browse files Browse the repository at this point in the history
(cherry picked from commit 643cc02)
  • Loading branch information
GursheenK authored and mergify[bot] committed Mar 19, 2024
1 parent 59a9a41 commit 9f0ad7a
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,11 @@ <h4 class="text-center">{{ _("Ageing Report based on ") }} {{ ageing.ageing_base
<table class="table table-bordered">
<thead>
<tr>
<th style="width: 25%">30 Days</th>
<th style="width: 25%">60 Days</th>
<th style="width: 25%">90 Days</th>
<th style="width: 25%">120 Days</th>
<th style="width: 20%">0 - 30 Days</th>
<th style="width: 20%">30 - 60 Days</th>
<th style="width: 20%">60 - 90 Days</th>
<th style="width: 20%">90 - 120 Days</th>
<th style="width: 20%">Above 120 Days</th>
</tr>
</thead>
<tbody>
Expand All @@ -101,6 +102,7 @@ <h4 class="text-center">{{ _("Ageing Report based on ") }} {{ ageing.ageing_base
<td>{{ frappe.utils.fmt_money(ageing.range2, currency=filters.presentation_currency) }}</td>
<td>{{ frappe.utils.fmt_money(ageing.range3, currency=filters.presentation_currency) }}</td>
<td>{{ frappe.utils.fmt_money(ageing.range4, currency=filters.presentation_currency) }}</td>
<td>{{ frappe.utils.fmt_money(ageing.range5, currency=filters.presentation_currency) }}</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit 9f0ad7a

Please sign in to comment.