Fix the receipt and transfer journal entry details to show credit_total instead of debit_total for the credit section total
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
The Mia! Accounting Project
|
||||
detail.html: The cash receipt journal entry detail
|
||||
|
||||
Copyright (c) 2023 imacat.
|
||||
Copyright (c) 2023-2026 imacat.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -41,7 +41,7 @@ First written: 2023/2/26
|
||||
<li class="list-group-item accounting-journal-entry-line-item accounting-journal-entry-line-item-total">
|
||||
<div class="d-flex justify-content-between">
|
||||
<div>{{ A_("Total") }}</div>
|
||||
<div>{{ currency.debit_total|accounting_format_amount }}</div>
|
||||
<div>{{ currency.credit_total|accounting_format_amount }}</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
The Mia! Accounting Project
|
||||
detail.html: The transfer journal entry detail
|
||||
|
||||
Copyright (c) 2023 imacat.
|
||||
Copyright (c) 2023-2026 imacat.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -53,7 +53,7 @@ First written: 2023/2/26
|
||||
<li class="list-group-item accounting-journal-entry-line-item accounting-journal-entry-line-item-total">
|
||||
<div class="d-flex justify-content-between">
|
||||
<div>{{ A_("Total") }}</div>
|
||||
<div>{{ currency.debit_total|accounting_format_amount }}</div>
|
||||
<div>{{ currency.credit_total|accounting_format_amount }}</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user