gestion_hjc/ ├── achat_delete.log ├── app │   ├── bootstrap.php │   ├── Config │   │   └── config.php │   ├── Controllers │   │   ├── AchatController.php │   │   ├── AuthController.php │   │   ├── ClientController.php │   │   ├── DashboardController.php │   │   ├── ExportController.php │   │   ├── FournisseurController.php │   │   ├── ModesReglementController.php │   │   ├── PerteController.php │   │   ├── ProfileController.php │   │   ├── RoleController.php │   │   ├── SyntheseController.php │   │   ├── UserController.php │   │   └── VenteController.php │   ├── Core │   │   ├── Model.php │   │   ├── Router.php │   │   └── View.php │   ├── Helpers │   │   ├── AuthHelper.php │   │   ├── DateHelper.php │   │   ├── Html.php │   │   ├── Layout.php │   │   ├── Logger.php │   │   ├── mail_debug.log │   │   ├── Mail.php │   │   ├── Permission.php │   │   ├── Session.php │   │   ├── Url.php │   │   └── View.php │   ├── Models │   │   ├── Achat.php │   │   ├── Client.php │   │   ├── FondCaisse.php │   │   ├── Fournisseur.php │   │   ├── Log.php │   │   ├── ModesReglement.php │   │   ├── Permission.php │   │   ├── Perte.php │   │   ├── RolePermission.php │   │   ├── Role.php │   │   ├── User.php │   │   └── Vente.php │   ├── Services │   │   ├── Security │   │   │   └── PasswordService.php │   │   └── Text │   │   └── UserTextNormalizer.php │   └── Views │   ├── achats │   │   └── index.php │   ├── admin │   │   ├── roles.php │   │   └── users.php │   ├── auth │   │   ├── login.php │   │   ├── reset_invalid.php │   │   └── reset.php │   ├── clients │   │   └── index.php │   ├── dashboard.php │   ├── fournisseurs │   │   └── index.php │   ├── modes_reglement.php │   ├── partials │   ├── pertes │   │   └── index.php │   ├── profile │   │   └── show.php │   ├── profil.php │   ├── syntheses │   │   ├── export_buttons.php │   │   ├── export_csv.php │   │   ├── export_pdf.php │   │   ├── hebdo.php │   │   ├── mensuelle.php │   │   ├── quotidienne.php │   │   ├── resume_hebdo.php │   │   ├── table_achats.php │   │   └── table_ventes.php │   ├── templates │   │   ├── base.php │   │   ├── footer.php │   │   ├── header.php │   │   ├── main.php │   │   └── partials │   │   ├── flash.php │   │   ├── menu.php │   │   ├── titreResume.php │   │   ├── titreSynthese.php │   │   └── titreTable.php │   └── ventes │   ├── index.php │   └── partials │   ├── switchVue.php │   ├── vue_classique.php │   └── vue_simple.php ├── arbo.txt ├── check_multiple_servers.py ├── composer.json ├── gestion_hjc.sql ├── git_push.sh ├── git-version.sh ├── hjc.conf ├── liste_versions.sh ├── public │   ├── achats.php │   ├── admin │   │   ├── roles.php │   │   └── users.php │   ├── api │   │   ├── achat │   │   │   ├── delete.php │   │   │   ├── insert.php │   │   │   └── update.php │   │   ├── modes │   │   │   ├── create.php │   │   │   ├── toggle.php │   │   │   └── update.php │   │   ├── role │   │   │   ├── create.php │   │   │   ├── delete.php │   │   │   ├── toggle_permission.php │   │   │   └── update.php │   │   ├── session │   │   │   └── refresh_permissions.php │   │   └── user │   │   ├── create.php │   │   ├── delete.php │   │   ├── restore.php │   │   ├── toggle_active.php │   │   └── update.php │   ├── css │   │   ├── style copy.css │   │   └── style.css │   ├── index.php │   ├── js │   │   ├── achats.js │   │   ├── admin_roles.js │   │   ├── admin_users.js │   │   ├── fournisseurs.js │   │   ├── main.js │   │   └── modes_reglement.js │   ├── logout.php │   ├── modes_reglement.php │   └── profil.php ├── README.md ├── redis.conf ├── retour_version.sh ├── schema.sql ├── scripts │   ├── recalcul_fdc.php │   └── update_semaine.php ├── storage │   └── logs ├── suite.sh └── vendor ├── autoload.php └── composer ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── ClassLoader.php └── LICENSE 39 directories, 133 files