Browse Source

[MIG][10.0] Migration of partner_contact_nationality (#371)

12.0
Denis Roussel (ACSONE) 7 years ago
committed by Tima
parent
commit
c148ad94ba
  1. 5
      partner_contact_nationality/README.rst
  2. 5
      partner_contact_nationality/__manifest__.py
  3. 2
      partner_contact_nationality/models/res_partner.py

5
partner_contact_nationality/README.rst

@ -32,7 +32,7 @@ For further information, please visit:
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/134/9.0
:target: https://runbot.odoo-community.org/runbot/134/10.0
Known issues / Roadmap
======================
@ -48,7 +48,7 @@ In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback `here <https://github.com/OCA/
partner-contact/issues/new?body=module:%20
partner_contact_nationality%0Aversion:%20
9.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
10.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Credits
@ -62,6 +62,7 @@ Contributors
* Matjaž Mozetič <m.mozetic@matmoz.si>
* Rudolf Schnapka <schnapkar@golive-saar.de>
* Richard deMeester <richard@willowit.com.au>
* Denis Roussel <denis.roussel@acsone.eu>
Maintainer
----------

5
partner_contact_nationality/__manifest__.py

@ -5,17 +5,18 @@
{
"name": "Contact nationality",
"summary": "Add nationality field to contacts",
"version": "9.0.1.0.0",
"version": "10.0.1.0.0",
"category": "Customer Relationship Management",
"website": "https://odoo-community.org/",
"author": "Grupo ESOC, Odoo Community Association (OCA)",
"contributors": [
'Jairo Llopis <j.llopis@grupoesoc.es>',
'Richard deMeester <richard@willowit.com.au>',
'Denis Roussel <denis.roussel@acsone.eu>',
],
"license": "AGPL-3",
'application': False,
'installable': False,
'installable': True,
'auto_install': False,
"depends": [
"partner_contact_personal_information_page",

2
partner_contact_nationality/models/res_partner.py

@ -2,7 +2,7 @@
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openerp import fields, models
from odoo import fields, models
class ResPartner(models.Model):

Loading…
Cancel
Save