Ce projet vise à mettre en œuvre quelques notions de base de la comptabilité sous la forme d'une application web.
Disclaimer: This project is solely intended for educational purposes and should not be considered as a fully-functional accounting application. It is a student project created to implement basic accounting concepts.
- Ecriture journal
- Balance
- Grand livre
- Etat financier
- Bilan des actifs
- Bilan des passifs
- Compte de résultat
- Répartition des charges (compte 6) lors de l'insertion d'une écriture
- Analyse par produit
- Analyse par centre (Structurel et Opérationnel)
git clone https://github.com/mendrika261/S4-SI-entreprise.git
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Create a file named .env
and add the following variables:
# Database configuration
ERP_DB_NAME=postgres
ERP_DB_USER=postgres
ERP_DB_PASSWORD=
ERP_DB_HOST=localhost
ERP_DB_PORT=5432
python manage.py makemigrations
python manage.py migrate
Insert data into the database with sql script in sql/
folder
python manage.py createsuperuser
python manage.py runserver