This commit introduces significant changes to the architecture of the Horilla HRMS system by decoupling interdependent modules. The following modifications were made:
1. **Module Independence**: Each module has been refactored to eliminate reliance on other modules, promoting a more modular and maintainable codebase.
2. **Refactored Imports and Dependencies**: Adjusted import statements and dependency injections to support independent module operation.
3. **Compatibility and Functionality**: Ensured that all modules are compatible with existing systems and maintain their intended functionality both independently and when integrated with other modules.
These changes enhance the modularity, maintainability, and scalability of the Horilla HRMS, allowing developers to work on individual modules without affecting the entire system. Future development and deployment will be more efficient and less prone to issues arising from tightly coupled code.
**NOTE**
For existing Horilla users, if you face any issues during the migrations, please run the following command and try again the migrations.
- `python3 manage.py makemigrations`
- `python3 manage.py migrate base`
- `python3 manage.py migrate`
* [IMP] ASSET: Asset module dependency removal from other Horilla apps
* [IMP] ATTENDANCE: Attendance module dependency removal from other Horilla apps
* [IMP] BASE: Base module dependency removal from other Horilla apps
* [IMP] EMPLOYEE: Employee module dependency removal from other Horilla apps
* [IMP] HELPDESK: Helpdesk module dependency removal from other Horilla apps
* [IMP] HORILLA AUDIT: Horilla Audit module dependency removal from other Horilla apps
* [IMP] HORILLA CRUMBS: Horilla Crumbs module dependency removal from other Horilla apps
* [IMP] HORILLA AUTOMATIONS: Horilla Automations module dependency removal from other Horilla apps
* [IMP] HORILLA VIEWS: Horilla Views module dependency removal from other Horilla apps
* [IMP] LEAVE: Leave module dependency removal from other Horilla apps
* [IMP] OFFBOARDING: Offboarding module dependency removal from other Horilla apps
* [IMP] ONBOARDING: Onboarding module dependency removal from other Horilla apps
* [IMP] PMS: PMS module dependency removal from other Horilla apps
* [IMP] PAYROLL: Payroll module dependency removal from other Horilla apps
* [IMP] RECRUITMENT: Recruitment module dependency removal from other Horilla apps
* [IMP] HORILLA: Dependency removal updates
* [IMP] TEMPLATES: Dependency removal updates
* [IMP] STATIC: Dependency removal updates
* [IMP] HORILLA DOCUMENTS: Horilla Documents module dependency removal from other Horilla apps
* [ADD] HORILLA: methods.py
* [UPDT] HORILLA: Settings.py
* [FIX] EMPLOYEE: About tab issue
* Update horilla_settings.py
* Remove dummy db init password
* Remove duplicate I18N settings
removal of LANGUAGE_CODE, TIME_ZONE, USE_I18N AND USE_TZ duplicates in settings.py
* Fix incorrect variable in mail backends (typo error)
ssl_certfile was incorrectly named as ssl_keyfile
* Adding a test email form on the Mail Server page
This add a form to send a test mail to test mail server configuration. If any exception is caught during the send_mail it will be shown as a notification.
For the moment, any error error in the mail configuration is hard to debug without this.
* Resolve bug regarding wrong form input assignation to var
* [UPDT] BASE: Updated disciplinary action type model by adding abstract class
* [UPDT] BASE: Updated abstract model class save method by fethcing request from thread local
* [UPDT] LEAVE: Updated models in leave module by adding abstract class
* [UPDT] LEAVE: Updated leave request model by adding abstract class
* [UPDT] DASHBOARD: Floating quick action button rather than static template inside dashboard
* [UPDT] Test database
* [UPDT] ASSET: Updated models in asset app by adding abstract class HorillaModels
* [UPDT] ASSET: Updated asset category form by adding exclude fields in class Meta
* [FIX] ATTENDANCE: Attendance overtime permission wrong permission
* [UPDT] Test Database