mia-accounting-django/accounting
2020-08-03 23:12:04 +08:00
..
management/commands Changed the safe-guard condition of the accounting_sample command in the accounting application. 2020-08-02 18:29:10 +08:00
migrations Added the accounting application. 2020-06-29 19:41:52 +08:00
static/accounting/css Renamed "subject" to "account" in the accounting application. 2020-07-21 10:38:47 +08:00
templates/accounting Added the title_case filter and replaced the title filter with the title_case filter to display titles in American English. 2020-08-03 22:31:13 +08:00
templatetags Moved the url_with_return template tag from the accounting application to the Mia core application. 2020-07-23 22:23:40 +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 Replaced the invalid_period() method in Period.Parser with ValueError in the Mia core application. 2020-08-03 21:42:51 +08:00
forms.py Added to validate if an existing accounting record is a correct debit or credit record in the transaction forms in the accounting application. 2020-08-02 12:01:20 +08:00
models.py Renamed RecordSummary to MonthlySummary, changed it from a Django data model to a simple data class, and moved it from accounting.models to accounting.utils in the accounting application. 2020-08-03 22:48:43 +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 Added the account_options() view to return the account options in the accounting application. 2020-08-03 00:02:51 +08:00
utils.py Renamed RecordSummary to MonthlySummary, changed it from a Django data model to a simple data class, and moved it from accounting.models to accounting.utils in the accounting application. 2020-08-03 22:48:43 +08:00
validators.py Added forms and validators, and applied them to the transaction form in the accounting application. 2020-08-01 23:56:41 +08:00
views.py Replaced the set() method with the kwargs-based query() method in UrlBuilder in the Mia core application. 2020-08-03 23:12:04 +08:00