Skip to content

Commit

Permalink
[MIG][11.0]hr_employee_birth_name:Migration to 11.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Trivedi-Vacha-SerpentCS committed Jul 3, 2018
1 parent 55d2f36 commit c97ad5a
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 11 deletions.
23 changes: 21 additions & 2 deletions hr_employee_birth_name/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,25 @@ This module adds the following to employees :

* hr_employee_birth_name

Installation
============

To install this module, you need to:

1. Clone the branch 11.0 of the repository https://github.com/OCA/hr
2. Add the path to this repository in your configuration (addons-path)
3. Update the module list
4. Go to menu *Setting -> Modules -> Local Modules*
5. Search For *Employee Birth Name*
6. Install the module

Usage
=====

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/116/11.0

Bug Tracker
===========

Expand All @@ -23,7 +42,7 @@ Contributors
------------

* Denis Leemann <denis.leemann@camptocamp.com>

* Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>

Maintainer
----------
Expand All @@ -38,4 +57,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

To contribute to this module, please visit http://odoo-community.org.
To contribute to this module, please visit https://odoo-community.org.
1 change: 0 additions & 1 deletion hr_employee_birth_name/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# copyright 2017 Denis Leemann, Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

Expand Down
7 changes: 2 additions & 5 deletions hr_employee_birth_name/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
# -*- coding: utf-8 -*-
# copyright 2017 Denis Leemann, Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
'name': 'Employee Birth Name',
'version': '10.0.1.0.0',
'version': '11.0.1.0.0',
'category': 'Human Resources',
'author': "Camptocamp SA,Odoo Community Association (OCA)",
'website': 'http://www.camptocamp.com',
'website': 'https://github.com/OCA/hr',
'license': 'AGPL-3',
'depends': ['hr', ],
'data': [
'views/hr_employee_view.xml',
],
'demo': [],
'test': [],
'installable': True,
'auto_install': False,
}
1 change: 0 additions & 1 deletion hr_employee_birth_name/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# copyright 2017 Denis Leemann, Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

Expand Down
1 change: 0 additions & 1 deletion hr_employee_birth_name/models/hr_employee.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# copyright 2017 Denis Leemann, Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

Expand Down
2 changes: 1 addition & 1 deletion hr_employee_birth_name/views/hr_employee_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<field name="inherit_id" ref="hr.view_employee_form"/>
<field name="arch" type="xml">

<xpath expr="//field[@name='marital']" position="after">
<xpath expr="//field[@name='marital']" position="after">
<field name='birth_name'/>
</xpath>

Expand Down

0 comments on commit c97ad5a

Please sign in to comment.