I am working on a project on creating billing databse in PHP, MySQL.
There is a table in MySQL:
- ID - (primary key, Auto increment)
- Party - (name of the party)
- Basic Amount -
- Service Tax amount - (12.36 % on Basic amount) (calculated automatically)
- Gross amount - (Basic amount + Service Tax amount) (calculated automatically)
I have the following requirements :
- Bill no. will be as follows AB/ST/00001..2...3 etc./12-13 - pls. suggest how can i add this column in my database
- Service Tax amount will be calculated automatically and save on the database
- Gross amount will be calculated automatically and save on the database