Note that there are some explanatory texts on larger screens.

plurals
  1. POBilling module (Fee) for School Management Software
    primarykey
    data
    text
    <p>I am working on a School Management software which includes module for billing of students i.e, fee collection from students.</p> <p>The fee is collected on monthly basis (12 times a year) and the total monthly fee is combination of various charges, fixed as per class and month. Some of the charges include Tuition Fee, Bus Fee, Printing Charge or others. A fixed amount of late fee is also charged on per month basis starting from the date, which can vary from month to month. Bus fee is charged as per the bus category of a particular student. There is a provision for partial payments as well.</p> <p>My current approach is like this:</p> <p>A master table to store fee settings, which include month &amp; class and the fee settings.</p> <pre><code>feeMaster fid -&gt; Primary key month_year -&gt; Stores Month Year stu_class -&gt; Class of Student tuition_fee -&gt; Tuition fee for that class tuition_fee_percent -&gt; Percentage of Tuition fee to take, defaults to 100% bus_fee_percent -&gt; Percentage of bus fee late_fee_start -&gt; Day of month from which to charge late fee late_fee -&gt; fixed late fee on per month basis printing_charge -&gt; Printing charge if any other_fee -&gt; Other fee if any other_fee_reference -&gt; Other fee reference </code></pre> <p>Every time a student comes to pay his/her fee, calculation is made and a transaction takes place in the system. The details of the transaction are stored in two tables.</p> <p>Transaction master table is used to store the transactions</p> <pre><code>transMaster tid -&gt; Primary key purpose -&gt; purpose of transaction, monthly fee amount -&gt; amount of transaction type -&gt; transaction mode / cash / cheque / dd created -&gt; date </code></pre> <p>The details of this transaction are stored in another table as</p> <pre><code>studentFeeDetails sfid -&gt; unique id tid -&gt; transaction id from transMaster table fid -&gt; fee id from fee settings table feeMaster tuition_fee -&gt; calculated tuition_fee bus_fee -&gt; calculated bus_fee printing_charge -&gt; calculated printing_charge other_fee -&gt; calculated other_fee late_fee -&gt; calculated late_fee total_fee -&gt; total fee calculated discount -&gt; discount if given any amount_payable -&gt; net amount payable amount_paid -&gt; paid amount balance -&gt; balance - if paid amount is greater or lesser than the original one, it is stored here status -&gt; status - true if partial fee else false created -&gt; date of creation </code></pre> <p>This is the current architecture of the module. There is no accounting practices involved and hence creates lots of problems for our accounting deptt.</p> <ul> <li>To report the total payable fee for a month, every time, the system runs calculation algorithm on all the students and comes up with figure.</li> <li>To find the pending fee for a class, the system again first checks the receivable fee for that class and removes the entries found in <code>studentFeeDetails</code> table to generate the pending report.</li> <li>There is no proper segregation of fee heads under this system.</li> </ul> <p>Now the current system needs to be converted into proper accounting system which can track the advances and balances. </p> <p>I am thinking of a system where every month a posting process debits every student's account with the fee due for that month and on every late fee start date another process debits late fee to a student's account, if the fee is still pending.</p> <p>This approach can keep a check on receivables, pending and received fee.</p> <p>Please help, if the approach is correct and how to go with it. I am stuck with the db schema part and its implementation.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload