This expense management system is used to add the product either inward or outward. In inward, you can add inward product and balance is increased. In outward, you can add outward product and balance is decreased. You get the report of inward and outward as pdf, excel, and print.
Explore the docs »
Report Bug
·
Request Feature
This expense management system is used to add the product either inward or outward. In inward, you can add inward product and balance is increased. In outward, you can add outward product and balance is decreased. You get the report of inward and outward as pdf, excel, and print.
Follow the installation steps to open project without error
- Download and extract the project in htdocs
- Create the database
- Upload or Import expense.sql in your database
- Configure Base URL in application/config/config.php
$config['base_url'] = 'http://localhost/expense_manager/';
- Configure Database in application/config/constants.php
defined('DATABASE_NAME') OR define('DATABASE_NAME', 'your database name'); // Database Name
defined('DATABASE_USERNAME') OR define('DATABASE_USERNAME', 'your database username'); // Database Username
defined('DATABASE_PASS') OR define('DATABASE_PASS', 'your database password'); // Database Password
defined('DATABASE_HOST') OR define('DATABASE_HOST', 'your hostname'); // Hostname
- Configure Debug mode in application/config/database.php. development -> Show error, production -> Hide Error. Defalut Mode Production.
'db_debug' => (ENVIRONMENT !== 'production'),
Or
'db_debug' => (ENVIRONMENT !== 'development'),
- If you face any error Like @sqlMode, set stricton -> true application/config/database.php.
'stricton' => FALSE,
To
'stricton' => TRUE,
- Admin Login.
Username => socalled,
Password => 111111,
Consider the situation, You are a chef of one restaurant and you want to monitor the profit amount. So here the expense management system works. A gang of 3 friends came to your restaurant and order 3 egg rice and 2 omelets. so you want 4 eggs and 1 kg of rice and plus some ingredients. Now you bought 5 eggs and rice in the store. Rice cost 40 rs and egg cost 5 rs. The total cost you spend 40+25(55) = 65. Now those friends eat well and paid you. The egg rice cost is 35 and omelet costs 10. Now you have 90(330)+20(2*10) = 110. So now you earned 70(135-65). This is how expense management works. Here Demo, Inward -> Egg Rice, Omelete Outward -> Egg, Rice
5.Dashboard After Add Product :
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Project Link: https://github.com/dhina016/Expense-Management
=======