Fixed the text in the buttons to add new journal entries.

This commit is contained in:
依瑪貓 2023-03-20 23:16:57 +08:00
parent 079dc1ab6d
commit 03265a1232
2 changed files with 4 additions and 4 deletions

View File

@ -23,10 +23,10 @@ First written: 2023/2/25
<div id="accounting-material-fab-speed-dial" class="d-md-none accounting-material-fab">
<div id="accounting-material-fab-speed-dial-actions" class="d-md-none accounting-material-fab-speed-dial-group">
<a class="btn rounded-pill" href="{{ url_for("accounting.journal-entry.create", journal_entry_type=report.journal_entry_types.CASH_DISBURSEMENT)|accounting_append_next }}">
{{ A_("Cash expense") }}
{{ A_("Cash Disbursement") }}
</a>
<a class="btn rounded-pill" href="{{ url_for("accounting.journal-entry.create", journal_entry_type=report.journal_entry_types.CASH_RECEIPT)|accounting_append_next }}">
{{ A_("Cash income") }}
{{ A_("Cash Receipt") }}
</a>
<a class="btn rounded-pill" href="{{ url_for("accounting.journal-entry.create", journal_entry_type=report.journal_entry_types.TRANSFER)|accounting_append_next }}">
{{ A_("Transfer") }}

View File

@ -28,12 +28,12 @@ First written: 2023/3/8
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="{{ url_for("accounting.journal-entry.create", journal_entry_type=report.journal_entry_types.CASH_DISBURSEMENT)|accounting_append_next }}">
{{ A_("Cash Expense") }}
{{ A_("Cash Disbursement") }}
</a>
</li>
<li>
<a class="dropdown-item" href="{{ url_for("accounting.journal-entry.create", journal_entry_type=report.journal_entry_types.CASH_RECEIPT)|accounting_append_next }}">
{{ A_("Cash Income") }}
{{ A_("Cash Receipt") }}
</a>
</li>
<li>