Merge pull request #40928 from frappe/mergify/bp/version-15-hotfix/pr-40926

fix: incorrect currency symbol in General Ledger print (backport #40926)
This commit is contained in:
ruthra kumar
2024-04-09 19:54:48 +05:30
committed by GitHub

View File

@@ -55,10 +55,10 @@
</span>
</td>
<td style="text-align: right">
{%= format_currency(data[i].debit, filters.presentation_currency) %}
{%= format_currency(data[i].debit, filters.presentation_currency || data[i].account_currency) %}
</td>
<td style="text-align: right">
{%= format_currency(data[i].credit, filters.presentation_currency) %}
{%= format_currency(data[i].credit, filters.presentation_currency || data[i].account_currency) %}
</td>
{% } else { %}
<td></td>