|
f59378002e
|
Removed the list_transactions view that is not used now.
|
2023-03-09 14:36:38 +08:00 |
|
|
531e90e8ad
|
Revised the imports in the "accounting.transaction.view" module.
|
2023-03-09 14:36:38 +08:00 |
|
|
8fc33131dd
|
Changed the transaction operation to return to the default journal instead of the transaction list. The transaction list is to be removed. There is no link to the transaction list at all, and it's layout is undecided.
|
2023-03-09 14:36:38 +08:00 |
|
|
1f87bc00e8
|
Removed the excess "with_type" from the success redirection of the update_transaction view.
|
2023-03-09 14:36:33 +08:00 |
|
|
ff9ff4bdcf
|
Removed the excess "with_type" from the success redirection of the delete_transaction view.
|
2023-03-09 14:36:33 +08:00 |
|
|
578233d66d
|
Renamed the sort_accounts view to sort_transactions in the "accounting.transaction.views" module, and fixed its url endpoints on success.
|
2023-03-09 14:36:32 +08:00 |
|
|
ffe834bedd
|
Added the DATE_REQUIRED constant to the "accounting.transaction.forms" module as the common date field validator.
|
2023-03-09 14:36:29 +08:00 |
|
|
8d126e183f
|
Changed the date field of the transaction forms to set the default value in the view, but not the form, so that the default value is not set when it did not receive a value.
|
2023-03-09 06:37:10 +08:00 |
|
|
bfb08cf5fc
|
Changed the format_amount_input filter to accept None, and return an empty string if the value is None.
|
2023-03-09 06:37:09 +08:00 |
|
|
6bed180790
|
Renamed the TransactionTypeEnum enum to TransactionType.
|
2023-03-04 19:39:13 +08:00 |
|
|
10fbc3f638
|
Renamed the "accounting.transaction.dispatcher" module to "accounting.transaction.operators".
|
2023-03-04 19:36:53 +08:00 |
|
|
f65dc6fc42
|
Renamed the TransactionType class to TransactionOperator.
|
2023-03-04 19:36:07 +08:00 |
|
|
9833bac6e4
|
Added the TransactionTypeEnum in the new "accounting.utils.txn_types" module to remove the dependency from the "accounting.report" module to the "accounting.transaction" module.
|
2023-03-04 19:32:36 +08:00 |
|
|
3ab4eacf9f
|
Moved the "accounting.transaction.template_globals" module to "accounting.template_globals", for the two template globals will be used in the reports beside the transaction management.
|
2023-03-04 07:06:03 +08:00 |
|
|
4eb9346d8d
|
Renamed summary helper to summary editor.
|
2023-03-04 07:00:46 +08:00 |
|
|
8cf81b5459
|
Revised the documentation of the "accounting.account.queries", "accounting.base_account.queries", "accounting.currency.queries", and "accounting.transaction.queries" modules.
|
2023-03-04 06:57:35 +08:00 |
|
|
cc958a39b3
|
Moved the format_amount and format_date template filters from the "accounting.transaction.template_filters" module to the "accounting.template_filters" module, and rename the filters from "accounting_txn_format_amount" and "accounting_txn_format_date" to "accounting_format_amount" and "accounting_format_date", respectively. They will not only be used in the transaction management, but also the reports.
|
2023-03-04 06:57:10 +08:00 |
|
|
9065686cc5
|
Split the "accounting.transaction.template" module into the "accounting.transaction.template_filters" and "accounting.transaction.template_globals" modules.
|
2023-03-03 18:28:59 +08:00 |
|
|
6957e52d0d
|
Renamed the "accounting.account.query", "accounting.base_account.query", "accounting.currency.query", and "accounting.transaction.query" modules to "accounting.account.queries", "accounting.base_account.queries", "accounting.currency.queries", and "accounting.transaction.queries", respectively. There will be more than one query in the next report module.
|
2023-03-03 01:12:36 +08:00 |
|
|
63ae3f0746
|
Replace the is_in_use pseudo property of the Account data model with the AccountOption class, and revised the #getAccountCodeUsedInForm method of the SummaryHelper, to solve the issue that the list of used accounts should be different for debit and credit entries.
|
2023-03-01 01:28:25 +08:00 |
|
|
474e844ed9
|
Revised the loading of the summary helper so that only the required helpers are loaded, but not both the debit and credit helpers.
|
2023-02-28 21:35:02 +08:00 |
|
|
8b77d9ff93
|
Added the suggested accounts to the summary helper.
|
2023-02-28 19:11:09 +08:00 |
|
|
d5c2231794
|
Added the summary helper for the transaction form.
|
2023-02-28 15:49:01 +08:00 |
|
|
fc8e257a10
|
Added missing documentation to the currencies_errors pseudo property of the TransactionForm form.
|
2023-02-28 09:36:20 +08:00 |
|
|
2e9bf382fb
|
Revised the documentation of the "accounting.transaction.dispatcher" module.
|
2023-02-28 09:31:46 +08:00 |
|
|
fff89a9957
|
Replaced the direct database add with the relationship append in the JournalEntryCollector class, to fix the PostgreSQL error that the new journal entries are added when the transaction is not added yet.
|
2023-02-28 00:04:32 +08:00 |
|
|
f0d39bb27b
|
Added the action button to convert a cash income or cash expense transaction to a transfer transaction.
|
2023-02-27 18:59:42 +08:00 |
|
|
4c17310ebf
|
Fixed an error to recognize the current transaction type in the supplied URI in the with_type filter in the "accounting.transaction.template" module.
|
2023-02-27 18:47:19 +08:00 |
|
|
fd36672877
|
Revised the imports in the "accounting.transaction.views" module.
|
2023-02-27 18:44:33 +08:00 |
|
|
d67c57056b
|
Added the accounting_txn_format_amount_input template filter to properly format the decimal amount for the number input fields.
|
2023-02-27 18:40:54 +08:00 |
|
|
05fde3a742
|
Added the transaction management.
|
2023-02-27 15:28:45 +08:00 |
|