mia-accounting-django/accounting
2020-08-12 13:38:54 +08:00
..
locale/zh_Hant/LC_MESSAGES Revised the meta information in the translation. 2020-08-11 10:14:45 +08:00
management/commands Added the equipment account to the accounting_sample command in the accounting application. 2020-08-07 01:02:21 +08:00
migrations Added the accounting application. 2020-06-29 19:41:52 +08:00
static/accounting Revised the summary help to replace the common substitution asterisk character for multiplication with the times character itself. 2020-08-12 08:04:49 +08:00
templates/accounting Revised the txn_form view to constructs the new transaction form without having to bother the make_txn_form_from_model() utility, in order not to mess up with the is_bound form property, to replace the need for the should_validate template variable, and removed all the should_validate template variables from the transaction form templates in the accounting application. 2020-08-12 11:59:50 +08:00
templatetags Moved getting the ReportUrl utility from the views to the report chooser template, to simplify the view in the accounting application. 2020-08-07 10:25:29 +08:00
__init__.py Added the accounting application. 2020-06-29 19:41:52 +08:00
admin.py Renamed "subject" to "account" in the accounting application. 2020-07-21 10:38:47 +08:00
apps.py Added the accounting application. 2020-06-29 19:41:52 +08:00
converters.py Added AccountConverter and apply it to the URL patterns in the accounting application. 2020-08-07 10:10:33 +08:00
forms.py Revised the txn_form view to constructs the new transaction form without having to bother the make_txn_form_from_model() utility, in order not to mess up with the is_bound form property, to replace the need for the should_validate template variable, and removed all the should_validate template variables from the transaction form templates in the accounting application. 2020-08-12 11:59:50 +08:00
models.py Fixed the logic in the save() method of the Account data model so that the current_user will not override the created_by and updated_by when the current_user was not supplied in the accounting application. 2020-08-09 18:21:34 +08:00
tests.py Added the test case for the sort_post_txn_records() utility in the accounting application. 2020-08-02 23:08:53 +08:00
urls.py Removed an unused import from the URL patterns in the accounting application. 2020-08-09 17:44:24 +08:00
utils.py Revised so that the settings of the accounting application are optional now, and will not raise errors when they are not set correctly. 2020-08-12 00:20:02 +08:00
validators.py Removed the unused validate_account_code validator from the accounting application. 2020-08-09 21:04:11 +08:00
views.py Replaced the import of the utilities directly with importing the utility package, to prevent long list of utility import in the views of the accounting application. 2020-08-12 13:38:54 +08:00