Browse Source

[MIG] partner_contact_birthplace: Migration to 12.0

12.0
Crisa221 5 years ago
parent
commit
1d11c550f4
  1. 6
      partner_contact_birthplace/README.rst
  2. 1
      partner_contact_birthplace/__init__.py
  3. 3
      partner_contact_birthplace/__manifest__.py
  4. 1
      partner_contact_birthplace/models/__init__.py
  5. 1
      partner_contact_birthplace/models/res_partner.py
  6. 3
      partner_contact_birthplace/views/res_partner.xml

6
partner_contact_birthplace/README.rst

@ -14,7 +14,7 @@ Installation
To install this module, you need to: To install this module, you need to:
* Install the OCA repository `partner-contact`_.
* Install the OCA repository 'partner_contact'
* Update your modules list. * Update your modules list.
* Search and install this module. * Search and install this module.
@ -41,7 +41,7 @@ For further information, please visit:
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot :alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/134/10.0
:target: https://runbot.odoo-community.org/runbot/134/12.0
Credits Credits
@ -73,4 +73,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and mission is to support the collaborative development of Odoo features and
promote its widespread use. promote its widespread use.
To contribute to this module, please visit http://odoo-community.org.
To contribute to this module, please visit http://odoo-community.org

1
partner_contact_birthplace/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from . import models from . import models

3
partner_contact_birthplace/__manifest__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{ {
@ -6,7 +5,7 @@
'summary': 'This module allows to define a birthplace for partners.', 'summary': 'This module allows to define a birthplace for partners.',
'version': '12.0.1.0.0', 'version': '12.0.1.0.0',
'category': 'Customer Relationship Management', 'category': 'Customer Relationship Management',
'website': 'https://github.com/OCA/partner-contact'
'website': 'https://github.com/OCA/partner-contact/tree/12.0/'
'partner_contact_birthplace', 'partner_contact_birthplace',
'author': 'Agile Business Group, Odoo Community Association (OCA)', 'author': 'Agile Business Group, Odoo Community Association (OCA)',
'license': 'AGPL-3', 'license': 'AGPL-3',

1
partner_contact_birthplace/models/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from . import res_partner from . import res_partner

1
partner_contact_birthplace/models/res_partner.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2018 Simone Rubino - Agile Business Group # Copyright 2018 Simone Rubino - Agile Business Group
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

3
partner_contact_birthplace/views/res_partner.xml

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2018 Simone Rubino - Agile Business Group
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<!-- License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<odoo> <odoo>
<record id="view_personal_information_birthplace" model="ir.ui.view"> <record id="view_personal_information_birthplace" model="ir.ui.view">

Loading…
Cancel
Save