Hello...
I am currently working on a simple Accounting Application.
It will basically keep a record of the company's accounts and their balances, as well as allowing the posting of journal vouchers (debits and credits).
Having that as the 'input' side, there will also be reporting mechanisms, such as journal voucher reports, expense, income statement, account movement summary... etc..
I am almost complete with the inputting side... however, I need some suggestions on how to keep track of the account balances... in certain reports, the account balance or movement will be shown for each month... I'm still not sure of the optimum way to approach this. Here are some of my thoughts:
- Store only the balance of the account when it is created in the system, then generate the movement by querying through the journal-entries table, summing up all credits and debits for each months...
- Create a database that will store opening and ending balance of each account on month end (the table will be updated via a macro that will be executed when the application loads).
Does one of these suggestions make sense or am I on the wrong track on how to do this?
Thanks in advance for any suggestions/help.
I am currently working on a simple Accounting Application.
It will basically keep a record of the company's accounts and their balances, as well as allowing the posting of journal vouchers (debits and credits).
Having that as the 'input' side, there will also be reporting mechanisms, such as journal voucher reports, expense, income statement, account movement summary... etc..
I am almost complete with the inputting side... however, I need some suggestions on how to keep track of the account balances... in certain reports, the account balance or movement will be shown for each month... I'm still not sure of the optimum way to approach this. Here are some of my thoughts:
- Store only the balance of the account when it is created in the system, then generate the movement by querying through the journal-entries table, summing up all credits and debits for each months...
- Create a database that will store opening and ending balance of each account on month end (the table will be updated via a macro that will be executed when the application loads).
Does one of these suggestions make sense or am I on the wrong track on how to do this?
Thanks in advance for any suggestions/help.