Browse Source

[FIX] Technical Name Changed

pull/78/head
Sreejith 7 years ago
parent
commit
8bdea7f5a2
  1. BIN
      hr_appraisal/static/description/banner.jpg
  2. 7
      oh_appraisal/README.rst
  3. 2
      oh_appraisal/RELEASE_NOTES.md
  4. 1
      oh_appraisal/__init__.py
  5. 9
      oh_appraisal/__manifest__.py
  6. 0
      oh_appraisal/data/hr_appraisal_stages.xml
  7. 1
      oh_appraisal/models/__init__.py
  8. 0
      oh_appraisal/models/hr_appraisal_form.py
  9. 1
      oh_appraisal/models/hr_appraisal_survey.py
  10. 12
      oh_appraisal/security/hr_appraisal_security.xml
  11. 4
      oh_appraisal/security/ir.model.access.csv
  12. 0
      oh_appraisal/static/description/HRMS-BUTTON.png
  13. 0
      oh_appraisal/static/description/answers.png
  14. 0
      oh_appraisal/static/description/appraisal.png
  15. BIN
      oh_appraisal/static/description/banner.jpg
  16. 0
      oh_appraisal/static/description/cybro-service.png
  17. 0
      oh_appraisal/static/description/cybro_logo.png
  18. 0
      oh_appraisal/static/description/email.png
  19. 0
      oh_appraisal/static/description/icon.png
  20. 8
      oh_appraisal/static/description/index.html
  21. 0
      oh_appraisal/static/description/settings.png
  22. 0
      oh_appraisal/static/description/view_answers.png
  23. 0
      oh_appraisal/views/hr_appraisal_form_view.xml
  24. 0
      oh_appraisal/views/hr_appraisal_survey_views.xml

BIN
hr_appraisal/static/description/banner.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

7
hr_appraisal/README.rst → oh_appraisal/README.rst

@ -17,6 +17,11 @@ Installation
- www.odoo.com/documentation/10.0/setup/install.html - www.odoo.com/documentation/10.0/setup/install.html
- Install our custom addon - Install our custom addon
License
=======
GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3)
(http://www.gnu.org/licenses/agpl.html)
Bug Tracker Bug Tracker
=========== ===========
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
@ -28,7 +33,7 @@ Credits
Author Author
------ ------
Developer: Saritha Sahadevan @ cybrosys, saritha@cybrosys.in Developer: Saritha Sahadevan, saritha@cybrosys.in
Maintainer Maintainer
---------- ----------

2
hr_appraisal/RELEASE_NOTES.md → oh_appraisal/RELEASE_NOTES.md

@ -1,4 +1,4 @@
## Module hr_appraisal ## Module oh_appraisal
#### 30.03.2018 #### 30.03.2018
#### Version 10.0.1.0.0 #### Version 10.0.1.0.0

1
hr_appraisal/__init__.py → oh_appraisal/__init__.py

@ -20,5 +20,4 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>. # along with this program. If not, see <https://www.gnu.org/licenses/>.
# #
################################################################################### ###################################################################################
from . import models from . import models

9
hr_appraisal/__manifest__.py → oh_appraisal/__manifest__.py

@ -22,7 +22,7 @@
################################################################################### ###################################################################################
{ {
'name': "OHRMS Employee Appraisal", 'name': "OHRMS Employee Appraisal",
'version': '10.0.1.0', 'version': '10.0.1.0.0',
'summary': """Roll out appraisal plans and get the best of your workforce""", 'summary': """Roll out appraisal plans and get the best of your workforce""",
'description': """Roll out appraisal plans and get the best of your workforce""", 'description': """Roll out appraisal plans and get the best of your workforce""",
'category': 'Human Resources', 'category': 'Human Resources',
@ -30,7 +30,7 @@
'company': 'Cybrosys Techno Solutions', 'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions', 'maintainer': 'Cybrosys Techno Solutions',
'website': "https://www.openhrms.com", 'website': "https://www.openhrms.com",
'depends': ['base', 'hr', 'survey'], 'depends': ['hr', 'survey'],
'data': [ 'data': [
'security/ir.model.access.csv', 'security/ir.model.access.csv',
'security/hr_appraisal_security.xml', 'security/hr_appraisal_security.xml',
@ -38,9 +38,8 @@
'views/hr_appraisal_form_view.xml', 'views/hr_appraisal_form_view.xml',
'data/hr_appraisal_stages.xml' 'data/hr_appraisal_stages.xml'
], ],
'images': ["static/description/banner.gif"], 'images': ["static/description/banner.jpg"],
'license': "AGPL-3", 'license': "AGPL-3",
'installable': True, 'installable': True,
'application': True, 'application': False,
} }

0
hr_appraisal/data/hr_appraisal_stages.xml → oh_appraisal/data/hr_appraisal_stages.xml

1
hr_appraisal/models/__init__.py → oh_appraisal/models/__init__.py

@ -20,5 +20,4 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>. # along with this program. If not, see <https://www.gnu.org/licenses/>.
# #
################################################################################### ###################################################################################
from . import hr_appraisal_survey, hr_appraisal_form from . import hr_appraisal_survey, hr_appraisal_form

0
hr_appraisal/models/hr_appraisal_form.py → oh_appraisal/models/hr_appraisal_form.py

1
hr_appraisal/models/hr_appraisal_survey.py → oh_appraisal/models/hr_appraisal_survey.py

@ -20,7 +20,6 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>. # along with this program. If not, see <https://www.gnu.org/licenses/>.
# #
################################################################################### ###################################################################################
from odoo import models, fields from odoo import models, fields

12
hr_appraisal/security/hr_appraisal_security.xml → oh_appraisal/security/hr_appraisal_security.xml

@ -16,12 +16,12 @@
<record id="group_appraisal_employee" model="res.groups"> <record id="group_appraisal_employee" model="res.groups">
<field name="name">Employee</field> <field name="name">Employee</field>
<field name="implied_ids" eval="[(4, ref('base.group_user'))]"/> <field name="implied_ids" eval="[(4, ref('base.group_user'))]"/>
<field name="category_id" ref="hr_appraisal.module_category_hr_appraisal"/> <field name="category_id" ref="oh_appraisal.module_category_hr_appraisal"/>
</record> </record>
<record id="group_appraisal_manager" model="res.groups"> <record id="group_appraisal_manager" model="res.groups">
<field name="name">Manager</field> <field name="name">Manager</field>
<field name="category_id" ref="hr_appraisal.module_category_hr_appraisal"/> <field name="category_id" ref="oh_appraisal.module_category_hr_appraisal"/>
<field name="implied_ids" eval="[(4, ref('group_appraisal_employee'))]"/> <field name="implied_ids" eval="[(4, ref('group_appraisal_employee'))]"/>
<field name="users" eval="[(4, ref('base.user_root'))]"/> <field name="users" eval="[(4, ref('base.user_root'))]"/>
</record> </record>
@ -30,8 +30,8 @@
<field name="name">Appraisal Forms</field> <field name="name">Appraisal Forms</field>
<field name="domain_force">[('created_by','=',user.id)]</field> <field name="domain_force">[('created_by','=',user.id)]</field>
<field name="global" eval="True"/> <field name="global" eval="True"/>
<field name="model_id" ref="hr_appraisal.model_hr_appraisal"/> <field name="model_id" ref="oh_appraisal.model_hr_appraisal"/>
<field name="groups" eval="[(4,ref('hr_appraisal.group_appraisal_employee'))]"/> <field name="groups" eval="[(4,ref('oh_appraisal.group_appraisal_employee'))]"/>
<field name="perm_write" eval="True"/> <field name="perm_write" eval="True"/>
<field name="perm_read" eval="True"/> <field name="perm_read" eval="True"/>
<field name="perm_create" eval="True"/> <field name="perm_create" eval="True"/>
@ -41,8 +41,8 @@
<record id="hr_appraisal_manager_rule" model="ir.rule"> <record id="hr_appraisal_manager_rule" model="ir.rule">
<field name="name">Appraisal Forms</field> <field name="name">Appraisal Forms</field>
<field name="global" eval="True"/> <field name="global" eval="True"/>
<field name="model_id" ref="hr_appraisal.model_hr_appraisal"/> <field name="model_id" ref="oh_appraisal.model_hr_appraisal"/>
<field name="groups" eval="[(4,ref('hr_appraisal.group_appraisal_manager'))]"/> <field name="groups" eval="[(4,ref('oh_appraisal.group_appraisal_manager'))]"/>
<field name="perm_write" eval="True"/> <field name="perm_write" eval="True"/>
<field name="perm_read" eval="True"/> <field name="perm_read" eval="True"/>
<field name="perm_create" eval="True"/> <field name="perm_create" eval="True"/>

4
hr_appraisal/security/ir.model.access.csv → oh_appraisal/security/ir.model.access.csv

@ -1,3 +1,3 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_hr_appraisal_hr_appraisal,hr_appraisal.hr_appraisal,model_hr_appraisal,,1,1,1,1 access_hr_appraisal_hr_appraisal,oh_appraisal.hr_appraisal,model_hr_appraisal,,1,1,1,1
access_hr_appraisal_hr_appraisal1,hr_appraisal.hr_appraisal_stages,model_hr_appraisal_stages,,1,1,1,1 access_hr_appraisal_hr_appraisal1,oh_appraisal.hr_appraisal_stages,model_hr_appraisal_stages,,1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_hr_appraisal_hr_appraisal oh_appraisal.hr_appraisal model_hr_appraisal 1 1 1 1
3 access_hr_appraisal_hr_appraisal1 oh_appraisal.hr_appraisal_stages model_hr_appraisal_stages 1 1 1 1

0
hr_appraisal/static/description/HRMS-BUTTON.png → oh_appraisal/static/description/HRMS-BUTTON.png

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

0
hr_appraisal/static/description/answers.png → oh_appraisal/static/description/answers.png

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

0
hr_appraisal/static/description/appraisal.png → oh_appraisal/static/description/appraisal.png

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 82 KiB

BIN
oh_appraisal/static/description/banner.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

0
hr_appraisal/static/description/cybro-service.png → oh_appraisal/static/description/cybro-service.png

Before

Width:  |  Height:  |  Size: 221 KiB

After

Width:  |  Height:  |  Size: 221 KiB

0
hr_appraisal/static/description/cybro_logo.png → oh_appraisal/static/description/cybro_logo.png

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

0
hr_appraisal/static/description/email.png → oh_appraisal/static/description/email.png

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

0
hr_appraisal/static/description/icon.png → oh_appraisal/static/description/icon.png

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

8
hr_appraisal/static/description/index.html → oh_appraisal/static/description/index.html

@ -1,7 +1,7 @@
<section class="oe_container"> <section class="oe_container ">
<div class="oe_row"> <div class="oe_row">
<h2 class="oe_slogan">OpenHRMS</h2> <h2 class="oe_slogan">OpenHRMS</h2>
<h3 class="oe_slogan">Most advanced open source HR management software</h3> <h3 class="oe_slogan">Most advanced open source HR management software</h3>
</div> </div>
</section> </section>
@ -12,7 +12,6 @@
<a href="https://www.openhrms.com/#request-demo"> <a href="https://www.openhrms.com/#request-demo">
<img src="HRMS-BUTTON.png"> <img src="HRMS-BUTTON.png">
</a> </a>
<div class="oe_demo_footer oe_centeralign">Online Demo</div>
</div> </div>
</div> </div>
@ -144,4 +143,3 @@
<img src="cybro_logo.png" style="width: 190px; margin-bottom: 20px;" class="center-block"> <img src="cybro_logo.png" style="width: 190px; margin-bottom: 20px;" class="center-block">
</div> </div>
</section> </section>

0
hr_appraisal/static/description/settings.png → oh_appraisal/static/description/settings.png

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 83 KiB

0
hr_appraisal/static/description/view_answers.png → oh_appraisal/static/description/view_answers.png

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 75 KiB

0
hr_appraisal/views/hr_appraisal_form_view.xml → oh_appraisal/views/hr_appraisal_form_view.xml

0
hr_appraisal/views/hr_appraisal_survey_views.xml → oh_appraisal/views/hr_appraisal_survey_views.xml

Loading…
Cancel
Save