├── LICENSE ├── README.md ├── dashboard ├── custom_dashboards.php ├── index.php ├── widget901.php ├── widget902.php ├── widget903.php └── widget904.php ├── hooks.php ├── images ├── avatar │ ├── index.php │ └── no_image.svg └── index.php ├── includes ├── db │ ├── account_db.inc │ ├── attendance_db.inc │ ├── department_db.inc │ ├── doc_db.inc │ ├── employee_db.inc │ ├── employee_db_banking.inc │ ├── grade_db.inc │ ├── index.php │ ├── job_position_db.inc │ ├── leave_db.inc │ ├── overtime_db.inc │ ├── payslip_db.inc │ └── salary_structure_db.inc ├── frontHrm_db.inc ├── frontHrm_ui.inc ├── hrm_classes.inc ├── index.php └── ui │ ├── department_ui.inc │ ├── doc_ui.inc │ ├── employee_bank_ui.inc │ ├── employee_ui.inc │ ├── index.php │ ├── job_position_ui.inc │ ├── leave_ui.inc │ ├── overtime_ui.inc │ └── payslip_ui.inc ├── index.php ├── inquiry ├── emp_inquiry.php ├── index.php └── time_sheet.php ├── js ├── emp_payalloc.js └── index.php ├── manage ├── accounts.php ├── attendance.php ├── default_setup.php ├── department.php ├── doc_type.php ├── employee.php ├── employee_bank_entry.php ├── employee_docs.php ├── grade.php ├── index.php ├── leave_types.php ├── overtime.php ├── payroll_rules.php ├── payslip.php ├── position.php └── salary_structure.php ├── reporting ├── forms │ ├── index.php │ └── payslip_layout.php ├── index.php ├── redirect.php ├── rep889.php ├── rep_employees.php ├── rep_payslip.php └── reports_custom.php └── sql ├── index.php ├── remove.sql └── update.sql /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notrinos/FrontHrm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notrinos/FrontHrm/HEAD/README.md -------------------------------------------------------------------------------- /dashboard/custom_dashboards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notrinos/FrontHrm/HEAD/dashboard/custom_dashboards.php -------------------------------------------------------------------------------- /dashboard/index.php: -------------------------------------------------------------------------------- 1 |