diff --git a/hr_vacation_mngmt/static/description/index.html b/hr_vacation_mngmt/static/description/index.html index 3b434afe8..fceb389a0 100644 --- a/hr_vacation_mngmt/static/description/index.html +++ b/hr_vacation_mngmt/static/description/index.html @@ -11,7 +11,6 @@ - diff --git a/ohrms_core/README.rst b/ohrms_core/README.rst new file mode 100644 index 000000000..e8902cc3c --- /dev/null +++ b/ohrms_core/README.rst @@ -0,0 +1,45 @@ +Open HRMS CORE v10 +================== +* Open HRMS is a one-stop solution to manage human resource pool in a better and efficient format. +* It is a Open Source Project for empower Odoo HRMS by Cybrosys Technologies. +* Open HRMS is a set of modules, to empower Odoo HR module. +* Open HRMS CORE module is a suit that brings all the individual module into a single. +* It has selective - install approach for extra features. + +Features +======== +* Interactive Theme +* HR Dashboard +* HR Multi Company +* Biometric Device Automation +* Shift Management +* Loan Management +* Salary Advance +* Employee Reminders +* Employee Branch Transfer +* Advanced Employee Master +* Appraisal Plans & Strategies +* Employee Insurance +* HR Documents Management +* Entry & Exit Checklist +* Resignation Process +* HR Announcements +* Appreciations & Warnings +* Custody/Property Management +* Automation on Leaves Requests Mails +* Vacation Management +* Law Suit Management + +Technical Notes +=============== + +Author +======= +* Open HRMS +* Cybrosys Techno Solutions + +Credits +======= +Developer: Nilmar Shereef @ cybrosys, shereef@cybrosys.in +Developer: Jesni Banu @ cybrosys, jesni@cybrosys.in + diff --git a/ohrms_core/__init__.py b/ohrms_core/__init__.py index ce04f596e..8528cd037 100644 --- a/ohrms_core/__init__.py +++ b/ohrms_core/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- ################################################################################### -# A part of OpenHrms Project +# A part of Open HRMS Project # # Cybrosys Technologies Pvt. Ltd. # Copyright (C) 2018-TODAY Cybrosys Technologies (). -# Author: Jesni Banu () +# Author: Nilmar Shereef & Jesni Banu () # # This program is free software: you can modify # it under the terms of the GNU Affero General Public License (AGPL) as diff --git a/ohrms_core/__manifest__.py b/ohrms_core/__manifest__.py index 91756c2ce..30928e7a0 100644 --- a/ohrms_core/__manifest__.py +++ b/ohrms_core/__manifest__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- ################################################################################### -# A part of OpenHrms Project +# A part of Open HRMS Project # # Cybrosys Technologies Pvt. Ltd. # Copyright (C) 2018-TODAY Cybrosys Technologies (). -# Author: Jesni Banu () +# Author: Nilmar Shereef & Jesni Banu () # # This program is free software: you can modify # it under the terms of the GNU Affero General Public License (AGPL) as @@ -22,17 +22,31 @@ ################################################################################### { 'name': 'Open HRMS Core', - 'version': '10.0.1.1.0', - 'summary': """Open HRMS Core""", - 'description': 'Open HRMS Core', + 'version': '10.0.2.0.0', + 'summary': """Open HRMS Suit: It brings all Open HRMS modules""", + 'description': 'Main module of Open HRMS. It brings all others into a single module', 'category': 'Generic Modules/Human Resources', 'author': 'Cybrosys Techno Solutions', 'company': 'Cybrosys Techno Solutions', 'website': "https://www.openhrms.com", - 'depends': ['hr_payroll_account', 'hr_gamification', 'hr_employee_updation', 'hr_recruitment', 'hr_attendance', 'hr_holidays', - 'hr_payroll', 'hr_expense', 'hr_leave_request_aliasing', 'hr_timesheet', 'oh_appraisal', - 'oh_employee_creation_from_user', 'oh_employee_documents_expiry', 'hr_multi_company', - 'ohrms_loan_accounting', 'ohrms_salary_advance', 'hr_reminder', 'hr_reward_warning', + 'depends': ['hr_payroll_account', + 'hr_gamification', + 'hr_employee_updation', + 'hr_recruitment', + 'hr_attendance', + 'hr_holidays', + 'hr_payroll', + 'hr_expense', + 'hr_leave_request_aliasing', + 'hr_timesheet', + 'oh_appraisal', + 'oh_employee_creation_from_user', + 'oh_employee_documents_expiry', + 'hr_multi_company', + 'ohrms_loan_accounting', + 'ohrms_salary_advance', + 'hr_reminder', + 'hr_reward_warning', 'hr_theme'], 'data': [ 'views/menu_arrangement_view.xml', @@ -43,5 +57,5 @@ 'license': 'AGPL-3', 'installable': True, 'auto_install': False, - 'application': False, + 'application': True, } diff --git a/ohrms_core/doc/RELEASE_NOTES.md b/ohrms_core/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..bd459b2b9 --- /dev/null +++ b/ohrms_core/doc/RELEASE_NOTES.md @@ -0,0 +1,11 @@ +## Module + +#### 31.03.2018 +#### Version 10.0.2.0.0 +##### CHG +- index added and depends issue fixed. + +#### 30.03.2018 +#### Version 10.0.1.0.0 +##### ADD +- Initial commit for OpenHRMS Project \ No newline at end of file diff --git a/ohrms_core/models/__init__.py b/ohrms_core/models/__init__.py index c6c959203..f07efc9ab 100644 --- a/ohrms_core/models/__init__.py +++ b/ohrms_core/models/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- ################################################################################### -# A part of OpenHrms Project +# A part of Open HRMS Project # # Cybrosys Technologies Pvt. Ltd. # Copyright (C) 2018-TODAY Cybrosys Technologies (). -# Author: Jesni Banu () +# Author: Nilmar Shereef & Jesni Banu () # # This program is free software: you can modify # it under the terms of the GNU Affero General Public License (AGPL) as diff --git a/ohrms_core/models/hr_general_settings.py b/ohrms_core/models/hr_general_settings.py index 5a5d9a089..c37bad5e9 100644 --- a/ohrms_core/models/hr_general_settings.py +++ b/ohrms_core/models/hr_general_settings.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- ################################################################################### -# A part of OpenHrms Project +# A part of Open HRMS Project # # Cybrosys Technologies Pvt. Ltd. # Copyright (C) 2018-TODAY Cybrosys Technologies (). -# Author: Jesni Banu () +# Author: Nilmar Shereef & Jesni Banu () # # This program is free software: you can modify # it under the terms of the GNU Affero General Public License (AGPL) as diff --git a/ohrms_core/static/description/HRMS-BUTTON.png b/ohrms_core/static/description/HRMS-BUTTON.png new file mode 100644 index 000000000..0f1b65bea Binary files /dev/null and b/ohrms_core/static/description/HRMS-BUTTON.png differ diff --git a/ohrms_core/static/description/advance_request.png b/ohrms_core/static/description/advance_request.png new file mode 100644 index 000000000..ba24bf1b4 Binary files /dev/null and b/ohrms_core/static/description/advance_request.png differ diff --git a/ohrms_core/static/description/advanced_features.png b/ohrms_core/static/description/advanced_features.png new file mode 100644 index 000000000..9babdeb4e Binary files /dev/null and b/ohrms_core/static/description/advanced_features.png differ diff --git a/ohrms_core/static/description/announcement.png b/ohrms_core/static/description/announcement.png new file mode 100644 index 000000000..7fd413842 Binary files /dev/null and b/ohrms_core/static/description/announcement.png differ diff --git a/ohrms_core/static/description/appraisal.png b/ohrms_core/static/description/appraisal.png new file mode 100644 index 000000000..7a7f0a995 Binary files /dev/null and b/ohrms_core/static/description/appraisal.png differ diff --git a/ohrms_core/static/description/banner.jpg b/ohrms_core/static/description/banner.jpg index c5e755e45..86002370d 100644 Binary files a/ohrms_core/static/description/banner.jpg and b/ohrms_core/static/description/banner.jpg differ diff --git a/ohrms_core/static/description/custody.png b/ohrms_core/static/description/custody.png new file mode 100644 index 000000000..c281bad1e Binary files /dev/null and b/ohrms_core/static/description/custody.png differ diff --git a/ohrms_core/static/description/cybro-service.png b/ohrms_core/static/description/cybro-service.png new file mode 100644 index 000000000..252929a86 Binary files /dev/null and b/ohrms_core/static/description/cybro-service.png differ diff --git a/ohrms_core/static/description/employee_form.png b/ohrms_core/static/description/employee_form.png new file mode 100644 index 000000000..687f03f1c Binary files /dev/null and b/ohrms_core/static/description/employee_form.png differ diff --git a/ohrms_core/static/description/employee_transfer.png b/ohrms_core/static/description/employee_transfer.png new file mode 100644 index 000000000..84717bcd2 Binary files /dev/null and b/ohrms_core/static/description/employee_transfer.png differ diff --git a/ohrms_core/static/description/extended_em_form.png b/ohrms_core/static/description/extended_em_form.png new file mode 100644 index 000000000..745003909 Binary files /dev/null and b/ohrms_core/static/description/extended_em_form.png differ diff --git a/ohrms_core/static/description/hr_legal.png b/ohrms_core/static/description/hr_legal.png new file mode 100644 index 000000000..d29069d37 Binary files /dev/null and b/ohrms_core/static/description/hr_legal.png differ diff --git a/ohrms_core/static/description/hr_mult.png b/ohrms_core/static/description/hr_mult.png new file mode 100644 index 000000000..207568ddc Binary files /dev/null and b/ohrms_core/static/description/hr_mult.png differ diff --git a/ohrms_core/static/description/index.html b/ohrms_core/static/description/index.html index 409f27824..c68bc493b 100644 --- a/ohrms_core/static/description/index.html +++ b/ohrms_core/static/description/index.html @@ -1,13 +1,60 @@ +
+
+

Open HRMS

+

Most advanced open source HR management software

+
+
+ +
+
+
+
+ + + + +
+
+
+
+
-

OHRMS Core

+

Open HRMS Core

Managing Every Process of HR

+

Brings all the Open HRMS Features Into Your System

Cybrosys Technologies

Features:

-
+
+ Interactive Theme
+ HR Dashboard
+ HR Multi Company
+ Shift Management
+ Loan Management
+ Biometric Device Automation
+ Salary Advance
+
+
+ Employee Reminders
+ Employee Branch Transfer
+ Advanced Employee Master
+ Appraisal Plans & Strategies
+ Employee Insurance
+ HR Documents Management
+ Entry & Exit Checklist
+
+
+ Resignation Process
+ HR Announcements
+ Appreciations & Memos
+ Custody/Property Management
+ Automation on Leaves Request Mails
+ Vacation Management
+ Law Suit Management
+
@@ -17,7 +64,74 @@

Overview

+ Main Module of Open HRMS. + Open HRMS is a one-stop solution to manage human resource pool in a better and efficient format. + This suit brings entire Open HRMS modules into your system. +

+
+ + + +
+
+

Open HRMS Theme

+
+

+ Attractive Open HRMS theme makes a bow. +

+
+
+
+ +
+
+
+
+ +
+
+

Dashboard

+
+
+ +
+
+
+

+ Keep your eyes on your whole analysis. +

+
+
+
+ +
+
+

Multi Company

+
+

+ Manage multi branch employees easily. +

+
+
+
+ +
+
+
+
+
+
+

Integrated with Biometric Device

+
+
+ +
+
+
+

+ Automate employee attendance by ZkTeko biometric device. + It recognize face & thumb detection.

@@ -25,14 +139,342 @@
-
-
- +

Work Shift Management

+
+

+ Create and manage employee work shifts. +

+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+

+ Automate new shift schedule according to the shift sequence. +

+
+
+
+ +
+
+

Loan Management

+
+

+ Configure different loan policies, Assign approval authority, + Conduct the verification process and sanction loan for employees. +

+
+
+
+ +
+
+
+
+ +
+
+

Salary Advance

+
+
+ +
+
+
+

+ Configure advance salary rules, Set advance salary limits, + Minimum number of days, & Provide advance salary to employees. +

+
+
+
+ +
+
+

Records Related Reminders

+
+

+ Reminder helps to memorise all your important dates. The 'Bell' symbol just near by the chat icon will bring your reminder pop ups. + You can set reminders to any model (eg: Sales,HR,Project etc..) and also their corresponding date fields to compare. + This eases the company work load to memorize the special dates.

+
+
+
+ +
+
+
+
+ +
+
+

Employee Branch Transfer

+
+
+ +
+
+
+

+ You can transfer your employees to another branches without any pain. +

+
+
+
+ +
+
+

Appraisal Plans & Strategies

+
+
+ +
+
+
+

+ Utilize the best of your human resource pool. + Implement appraisal strategies to keep the motivational and performance level of your employees high. + Top Down or Bottom-up evaluation plans and give timely feedback and complements for accomplishments. +

+
+
+
+ +
+
+

Updated Employee Master

+
+

+ Advanced fields on employee form. Such as family information, joining date, + passport and ID expiry date with its expiry notifications. +

+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+

+ Citizenship Details, Related Proofs, Emergency Contacts etc... +

+
+
+
+ +
+
+

Employee Insurance Management

+
+

+ Efficiently manages the insurance allowances with the salary. +

+
+
+
+ +
+
+
+
+ +
+
+

Employee Documents Management

+
+
+ +
+
+
+

+ Documents in Employee Form. +

+
+
+
+ +
+
+
+

+ Keep the employee related documents with expiry notification. +

+
+
+
+ +
+
+
+
+ +
+
+

Entry & Exit Checklist

+
+

+ A person has to undergo all configured checklist items before being admitted/resigned. + Corresponding Percentpie will be shown in employee form view. +

+
+
+
+ +
+
+
+
+ +
+
+

Resignation Process

+
+
+ +
+
+
+

+ Employee can draft the letter, Higher level officers can approve/reject the resignation. +

+
+
+
+ +
+
+

HR Announcements

+
+

+ Managing Official Announcements, Greetings, Warnings, Rewards etc.. +

+
+
+
+ +
+
+
+
+ +
+
+

Custody/Property Management

+
+
+ +
+
+
+

+ Manages custody handling process on company assets like Laptop, Camera, Devices etc.. + Option to renew the requests & take the reports. +

+
+
+
+ +
+
+

Automation on Leaves Requests Mails

+
+

+ Creates leave request automatically from incoming email. +

+
+
+
+ +
+
+
+
+ +
+
+

Vacation Management

+ + + + + + +

+ Extending Holiday Management with extra features adaptable for managing employees vacation. +

+ +
+
+ +
+
+

Law Suit Management

+
+

+ Manages legal actions and its reports. +

+
+
+
+ +
+
+
+
+ +
+
+

Selective Approach

+
+
+
+
+

+ Open HRMS is keeping selective approach. You can install its other features as plugins from settings menu. +

+
+
+
+

Our Odoo Services

+
+
+
+ + + +
+
+
+

Need Any Help?

@@ -49,13 +491,6 @@

-
- - - - - -
diff --git a/ohrms_core/static/description/insurance_emp_form.png b/ohrms_core/static/description/insurance_emp_form.png new file mode 100644 index 000000000..b48d50738 Binary files /dev/null and b/ohrms_core/static/description/insurance_emp_form.png differ diff --git a/ohrms_core/static/description/mail_aliasing.png b/ohrms_core/static/description/mail_aliasing.png new file mode 100644 index 000000000..5b499b18a Binary files /dev/null and b/ohrms_core/static/description/mail_aliasing.png differ diff --git a/ohrms_core/static/description/multi_company.png b/ohrms_core/static/description/multi_company.png new file mode 100644 index 000000000..34ad6464b Binary files /dev/null and b/ohrms_core/static/description/multi_company.png differ diff --git a/ohrms_core/static/description/oh_document_form.png b/ohrms_core/static/description/oh_document_form.png new file mode 100644 index 000000000..594c65059 Binary files /dev/null and b/ohrms_core/static/description/oh_document_form.png differ diff --git a/ohrms_core/static/description/oh_employee_checklist.png b/ohrms_core/static/description/oh_employee_checklist.png new file mode 100644 index 000000000..d2e9b8e6e Binary files /dev/null and b/ohrms_core/static/description/oh_employee_checklist.png differ diff --git a/ohrms_core/static/description/oh_employee_doc_form.png b/ohrms_core/static/description/oh_employee_doc_form.png new file mode 100644 index 000000000..53e0af5aa Binary files /dev/null and b/ohrms_core/static/description/oh_employee_doc_form.png differ diff --git a/ohrms_core/static/description/oh_icon.png b/ohrms_core/static/description/oh_icon.png new file mode 100644 index 000000000..37ae62869 Binary files /dev/null and b/ohrms_core/static/description/oh_icon.png differ diff --git a/ohrms_core/static/description/oh_loan.png b/ohrms_core/static/description/oh_loan.png new file mode 100644 index 000000000..a0245e881 Binary files /dev/null and b/ohrms_core/static/description/oh_loan.png differ diff --git a/ohrms_core/static/description/open_hrms_dashboard.png b/ohrms_core/static/description/open_hrms_dashboard.png new file mode 100644 index 000000000..1f50d3fbb Binary files /dev/null and b/ohrms_core/static/description/open_hrms_dashboard.png differ diff --git a/ohrms_core/static/description/reminder.png b/ohrms_core/static/description/reminder.png new file mode 100644 index 000000000..1153cab8c Binary files /dev/null and b/ohrms_core/static/description/reminder.png differ diff --git a/ohrms_core/static/description/resignation_form.png b/ohrms_core/static/description/resignation_form.png new file mode 100644 index 000000000..a3c4045df Binary files /dev/null and b/ohrms_core/static/description/resignation_form.png differ diff --git a/ohrms_core/static/description/shift_1.png b/ohrms_core/static/description/shift_1.png new file mode 100644 index 000000000..7596e91f8 Binary files /dev/null and b/ohrms_core/static/description/shift_1.png differ diff --git a/ohrms_core/static/description/shift_2.png b/ohrms_core/static/description/shift_2.png new file mode 100644 index 000000000..852e8402c Binary files /dev/null and b/ohrms_core/static/description/shift_2.png differ diff --git a/ohrms_core/static/description/theme.png b/ohrms_core/static/description/theme.png new file mode 100644 index 000000000..2c33a58da Binary files /dev/null and b/ohrms_core/static/description/theme.png differ diff --git a/ohrms_core/static/description/zk.png b/ohrms_core/static/description/zk.png new file mode 100644 index 000000000..571e08337 Binary files /dev/null and b/ohrms_core/static/description/zk.png differ