2c6256b497Fixed to return as JSON in the get_summary_categories() utility in the accounting application.依瑪貓2020-08-05 00:28:43 +0800
4f7c338dfdAdded transactions.css to the views of the transactions in the accounting application.依瑪貓2020-08-04 23:59:15 +0800
66c08fd413Rewrote the get_summary_categories() utility to only query once in the accounting application.依瑪貓2020-08-04 23:26:30 +0800
8f90912146Fixed to resort the order when the date is changed in a transaction form in the accounting application.
依瑪貓
2020-08-04 14:02:52 +0800
3680d550c7Added a movie to the accounting_sample command in the accounting application.
依瑪貓
2020-08-04 09:56:02 +0800
245e4c6573Added the get_summary_categories() utility and put the categories in the transaction forms in the accounting application.
依瑪貓
2020-08-04 09:55:27 +0800
12d4af06a0Added TODO to the views to-do in the accounting application.
依瑪貓
2020-08-04 09:18:28 +0800
44e22d711fRenamed the sn column to id in the accounting application.依瑪貓2020-08-04 01:59:51 +0800
733335c715Replaced the set() method with the kwargs-based query() method in UrlBuilder in the Mia core application.依瑪貓2020-08-03 23:12:04 +0800
b749581162Moved the data preparation out of the transaction in the txn_store() view in the accounting application.依瑪貓2020-08-03 22:55:18 +0800
1d7acef3e1Renamed 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 +0800
66f57b7b0dAdded 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 +0800
3babe8bc1fAdded the prep_desc property to Period to return the text descriptions with prepositions, to be easier to embed it in a text message in the Mia core application, and applied it in the accounting reports in the accounting application.依瑪貓2020-08-03 22:20:20 +0800
512fd35adcRemoved the now-unused error decorated @property from Period in the accounting application.依瑪貓2020-08-03 22:00:41 +0800
c2b9cdbeedRenamed the set_this_month() method to _set_this_month() to change it to private in Period.Parser in the Mia core application.依瑪貓2020-08-03 21:51:04 +0800
95e0173126Replaced the invalid_period() method in Period.Parser with ValueError in the Mia core application.依瑪貓2020-08-03 21:42:51 +0800
95cd08a887Added the VERY_START constant in Period.Parser to denote the earliest-possible beginning in the Mia core application.依瑪貓2020-08-03 21:35:25 +0800
ad52aa1783Revised the documentation in Period in the accounting application.依瑪貓2020-08-03 21:31:25 +0800
2ff813ebd1Renamed get_month_last_day() to _month_last_day() in Period.Parser in the Mia core application.依瑪貓2020-08-03 21:30:40 +0800
4cd0f0636dRenamed the method _get_month_text() to _month_text(), _get_year_text() to _year_text(), and _get_date_text() to _date_text() in Period.Parser in the Mia core application.依瑪貓2020-08-03 21:28:35 +0800
7b92ff7567Added the _get_year_text() utility to Period.Parser in the Mia core application.依瑪貓2020-08-03 21:25:14 +0800
cd6cd51444Renamed get_month_text() to _get_month_text(), and get_date_text() to _get_date_text() to change them to private in Period.Parser.依瑪貓2020-08-03 21:19:47 +0800
c3240b27e7Removed the unused dict template filter from the Mia core application.依瑪貓2020-08-03 21:17:25 +0800
18161c3fb2Changed the cumulative_balance property in RecordSummary from a decorated @property to a simple property in the accounting application.依瑪貓2020-08-03 20:01:36 +0800
a9a47f8526Fixed the error not setting the label correctly in the cash account summary and ledger summary in the accounting application.依瑪貓2020-08-03 19:32:41 +0800
841fbc1223Added the add_css and add_js template tags to add local CSS and JavaScript files to the base template in the Mia core application, and applied them in the templates of the accounting application.依瑪貓2020-08-03 00:20:26 +0800
cbac2ba61eAdded the account_options() view to return the account options in the accounting application.依瑪貓2020-08-03 00:02:51 +0800
ce1d640866Added the test case for the sort_post_txn_records() utility in the accounting application.依瑪貓2020-08-02 23:08:53 +0800
14c6d2e4bfRevised the sort_post_txn_records() utility to fill in the new order as strings instead of integers in the accounting applications.依瑪貓2020-08-02 23:08:13 +0800
2c3bd43345Fixed the URL of the 3351 brought-forward subject in the balance sheet to the income statement before the current period in the accounting application.依瑪貓2020-08-02 22:38:16 +0800
b652d090d3Added the mount, debit_amount, and credit_amount properties to replace the run-time balance, total, debit, and credit properties in the Account data model in the accounting application.依瑪貓2020-08-02 19:42:48 +0800
bcc394128eApplied the title filter to the account titles in the trial balance in the accounting application.依瑪貓2020-08-02 18:47:16 +0800
65a950a28aChanged the safe-guard condition of the accounting_sample command in the accounting application.依瑪貓2020-08-02 18:29:10 +0800
2ae1e825f6Revised the accounting_sample command to supply the account code as numbers instead of strings in the accounting application.依瑪貓2020-08-02 18:26:01 +0800
6cbef81088Wrapped the accounting_sample command in a transaction in the accounting application.依瑪貓2020-08-02 18:23:01 +0800
2b9034cfe8Moved the hard-coded account code 3351 and 3353 to constants in the Account data model in the accounting application.依瑪貓2020-08-02 18:20:36 +0800
da3e7912deMoved the account code of cash from hard-coded in the codes to a class constant in the Account data model in the accounting application.依瑪貓2020-08-02 18:13:04 +0800
377b25f669Changed the decorated @property balance to a real property in the Record data model in the accounting application, for simplicity.依瑪貓2020-08-02 18:00:06 +0800
f3e2280041Revised the debit_amount and credit_amount pseudo property in the Record data model in the accounting application.依瑪貓2020-08-02 17:57:16 +0800
fe22f64b64Fixed the cash account and ledger and restored the balance value of the pseudo records in the accounting application.依瑪貓2020-08-02 17:55:07 +0800
6f444442b1Fixed the txn_edit() and txn_store() views to work with cash income and cash expense transactions in the accounting application.依瑪貓2020-08-02 14:29:45 +0800
a78cbb2ad8Revised the records property of the record data model so that the returned records are sorted by their types and their orders in the accounting application.依瑪貓2020-08-02 14:08:38 +0800
7acef78d5dReplaced the record order value with forloop.counter, so that the form does not have to have the order field.依瑪貓2020-08-02 14:03:33 +0800
62978474c8Renamed the variable rec_type as record_type in the fill_txn_from_post() and make_txn_form_from_post() utilities in the accounting application.依瑪貓2020-08-02 12:07:45 +0800
8d9e4cdf93Fixed the fill_txn_from_post() utility to fill the optional fields as None when they are empty in the accounting application.依瑪貓2020-08-02 12:06:19 +0800
70bc4e9662Added 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 +0800
3224a1d111Added to store the transaction依瑪貓2020-08-02 11:01:36 +0800
478d0ca035Removed unnecessary @property decorations from the transaction data model in the accounting application.依瑪貓2020-08-02 10:39:07 +0800
c4ffe5da34Reordered the members in the transaction data model in the accounting application.依瑪貓2020-08-02 10:35:35 +0800
4561fa4b39dded to return as "not modified" when the transaction was not modified in the accounting application.依瑪貓2020-08-02 10:01:17 +0800
688e350017Adapted dirtyfields in the data models.依瑪貓2020-08-02 09:53:26 +0800
330b43c71bFixed the fill_txn_from_post() utility when constructing the records in the accounting application.依瑪貓2020-08-02 09:51:17 +0800
fe8dae191eRevised the strip_form() utility to remove the empty input in the Mia core application.依瑪貓2020-08-02 09:44:08 +0800
0f8f2b7838Removed the unused debug logging in the record form validation in the accounting application.依瑪貓2020-08-02 03:27:41 +0800
f7c62fcc66Renamed the views transaction_show() to txn_show(), transaction_edit() to txn_edit(), and transaction_store() to txn_store() in the accounting application.依瑪貓2020-08-02 03:08:26 +0800
96eb033fb4Renamed utility methods *transaction* to *txn*, and the corresponding parameters and variables, to avoid name conflict in the accounting application.依瑪貓2020-08-02 03:06:31 +0800
7be26e7447Renamed the parameter transaction to txn in the transaction_show(), transaction_edit() and transaction_store() views, to avoid name conflict in the accounting application.依瑪貓2020-08-02 03:00:23 +0800
066fd1cb3fRenamed a variable to prevent shadowing the outer variables in the sort_form_transaction_records() utility in the accounting application.依瑪貓2020-08-02 02:40:00 +0800
73c961cfeeMoved the common codes in the make_transaction_form_from_post() and fill_transaction_from_post() utilities to the new _find_max_record_no() utility, to avoid duplicated codes in the accounting application.依瑪貓2020-08-02 02:37:18 +0800
413c0fe112Renamed the fill_transaction_from_form() to fill_transaction_from_post(), and the parameter form to post in the accounting application.依瑪貓2020-08-02 02:32:10 +0800
db4100cb9cRemoved the unused is_chosen_year() method from the Period utility in the Mia core application.依瑪貓2020-08-02 02:28:47 +0800
c3fc7ad3caRemoved unnecessary @property decorations in the Period utility in the Mia core application.依瑪貓2020-08-02 02:27:54 +0800
783ecea5cbRevised the documentation of Period in the Mia core application.依瑪貓2020-08-02 02:20:08 +0800
1b89fef01cFixed and replaced the incorrect class property declaration with the instance property declaration, and replaced unnecessary pseudo properties with instance properties.依瑪貓2020-08-02 01:04:47 +0800
fda8a2c523Fixed the ledger URL parameter in the template of the trial balance in the accounting application.依瑪貓2020-08-02 00:32:46 +0800
edb1aece09Fixed the documentation of the view of the home page in the Mia core application.依瑪貓2020-08-02 00:29:43 +0800
da80816b37Revised the coding style according to PEP8.依瑪貓2020-08-02 00:08:53 +0800
9d988f17caAdded forms and validators, and applied them to the transaction form in the accounting application.依瑪貓2020-08-01 23:56:41 +0800
c1da25b3b5Fixed the text in the period chooser for the period "since last month" in the period chooser template in the Mia core application.依瑪貓2020-08-01 07:56:06 +0800
54939d3050Fixed the error in the view of the cash account when there is no data in the current period in the accounting application.依瑪貓2020-08-01 07:49:56 +0800
aec234fc01Renamed the add_param() method to add(), the del_param() method to remove(), and the set_param() method to set() in UrlBuilder in the Mia core application.依瑪貓2020-07-31 21:16:03 +0800
1a27d87400Added the strip_form() utility to the Mia core application, and apply it to the transaction_store() view of the accounting application.依瑪貓2020-07-31 00:14:12 +0800
69e8eed33fMoved the account validation rule to from the transaction_store() view to the validate_account_code() utility function in the accounting application.依瑪貓2020-07-30 08:04:18 +0800
6e08093464Revised the form of the transactions to supply the account code instead of the account primary key in the accounting application.依瑪貓2020-07-30 07:37:27 +0800
2252e4cb98Revised the code in the transaction_sotre() view in the accounting application.依瑪貓2020-07-30 07:35:30 +0800
a30c937a4bRenamed the digest_login_required() decorator to login_required(), for consistency.依瑪貓2020-07-30 00:12:13 +0800
a8058209bdReplaced the views of the default accounting reports with class-based redirect views in the accounting application.依瑪貓2020-07-30 00:10:11 +0800
e64089f06fAdded the default_spec() method to Period, and applied it to the views in the accounting application.依瑪貓2020-07-29 19:08:10 +0800
79337272ecRevised the imports in the views of the accounting application.
依瑪貓
2020-07-29 15:07:47 +0800
d6428a002eRenamed the parameter type to txn_type in the transaction views in the accounting application.
依瑪貓
2020-07-29 15:06:23 +0800
63d83e0e4dRevised the transaction_store() view to validate the POSTed form in the accounting application.
依瑪貓
2020-07-29 15:04:31 +0800
5c2f5a0407Revised the fill_transaction_from_form() utility to store the account code instead of the account primary key in the accounting application.
依瑪貓
2020-07-29 14:47:49 +0800
aa35e45426Renamed the variables in the sort_form_transaction_records() utility in the accounting application.
依瑪貓
2020-07-29 09:40:51 +0800
758af556fcSimplified the code in the sort_form_transaction_records() utility in the accounting application.
依瑪貓
2020-07-29 09:38:34 +0800
7ec25d89a8Refined the sort_form_transaction_records() utility in the accounting application.
依瑪貓
2020-07-29 09:37:15 +0800
0b0624b709Simplified the code in the sort_form_transaction_records() utility in the accounting application.
依瑪貓
2020-07-29 09:27:52 +0800
3873f131efRevised the redundant part in the fill_transaction_from_form() utility in the accounting application.
依瑪貓
2020-07-29 09:22:56 +0800
de7abdfc7eAdded the fill_transaction_from_form() utility and moved most of the code in fill_transaction_from_previous_form() to there, added the sort_form_transaction_records() utility, and applied the two utilities in the transaction_store() view in the accounting application.依瑪貓2020-07-29 00:02:34 +0800
ec51884414Revised the fill_transaction_from_previous_form() utility in the accounting application.依瑪貓2020-07-28 22:59:29 +0800
4c3f3465d5Added the fill_transaction_from_previous_form() utility to load the transaction data from the stored status, and applied it to the transaction_edit() view in the accounting application.依瑪貓2020-07-28 22:48:42 +0800
80b871d488Added the retrieve_status() utility and applied it in the retrieve_status template tag in the Mia core application.依瑪貓2020-07-28 22:22:06 +0800
983f38d6f0Renamed the function of the retrieve_status() template tag to retrieve_status_tag() with alias to retrieve_status.依瑪貓2020-07-28 22:19:26 +0800
a0ec831310Removed the unused index template filter from the Mia core application.依瑪貓2020-07-28 22:12:46 +0800
9ab325a1c7Added the dict template filter to obtain a value from a dictionary in the Mia core application, and applied it in the templates of the forms of the transactions in the acccounting application.依瑪貓2020-07-28 22:11:54 +0800
d6df2496beRemoved an excess trailing blank line in the Mia core application.依瑪貓2020-07-28 20:14:55 +0800
7ae30f9980Revised the retrieve_status() template tag and renamed the errors template variable to page_errors in the Mia core application.依瑪貓2020-07-28 20:06:09 +0800
50c06bd3d3Added the error_redirect() utility, and revised the documentation of the stored status utilities in the Mia core application.依瑪貓2020-07-28 20:01:58 +0800
958e3048bbAdded the documentation to the success_redirect() utility in the Mia core application.依瑪貓2020-07-28 19:34:14 +0800
8285c69685Fixed an error in the storing the status into the session in the Mia core application.
依瑪貓
2020-07-28 09:38:58 +0800
b5e7f9878fFixed an error in the storing the status into the session in the Mia core application.依瑪貓2020-07-28 08:43:30 +0800