mia-accounting-django/accounting
2022-08-13 20:48:26 +08:00
..
locale/zh_Hant/LC_MESSAGES Replaced the regular payments with the regular account settings in the summary helper, to remove the dependency on the local JavaScript codes in the accounting application. 2020-08-31 10:16:01 +08:00
management/commands Removed an unused import from the accounting_accounts management command in the accounting application. 2020-09-06 21:58:25 +08:00
migrations Added the accounting application. 2020-06-29 19:41:52 +08:00
static/accounting Fixed the JavaScript form validation logic from isValid && validateXxx() to validateXxx() && isValid, in order to correctly validate multiple fields at once. 2021-08-27 07:37:34 +08:00
templates/accounting Moved the cancel button to the start and the confirm button to the end in the bootstrap modals. 2021-08-27 07:18:35 +08:00
templatetags Added the short_value template filter that strips the excess trailing decimal zeros in the accounting form in the accounting application. 2020-10-20 22:01:56 +08:00
__init__.py Added the accounting application. 2020-06-29 19:41:52 +08:00
apps.py Added the accounting application. 2020-06-29 19:41:52 +08:00
converters.py Revised the documentation of the TransactionConverter in the accounting application. 2020-08-13 07:57:29 +08:00
forms.py Revised to allow amounts in decimal numbers in the accounting application. 2020-08-21 10:00:59 +08:00
models.py Fixed the records pseudo property of the Transaction data model to find the records only for existing transactions, to work with Django 4.1. 2022-08-13 20:48:26 +08:00
tests.py Moved the sort_post_txn_records utility and the logic to create the form to TransactionForm in the accounting application. 2020-08-19 13:38:05 +08:00
urls.py Replaced the function-based search view with the class-based SearchListView in the accounting application. 2020-09-04 22:12:17 +08:00
utils.py Revised the data order of the add_accounts() method in DataFiller to put English first in the accounting application. 2020-08-25 13:40:24 +08:00
validators.py Added type hints to the accounting application. 2020-08-13 07:25:35 +08:00
views.py Added the output_field when calculating the sum and coalesce in the views. 2021-08-24 07:34:56 +08:00