Browse Source
[MIG] res_partner_affiliate: To v10
* Bump versions
* Openerp to Odoo
* Fix tab level in view
pull/438/head
Dave Lasley
8 years ago
No known key found for this signature in database
GPG Key ID: 7DDBA4BA81B934CF
4 changed files with
75 additions and
74 deletions
-
res_partner_affiliate/README.rst
-
res_partner_affiliate/__manifest__.py
-
res_partner_affiliate/models/res_partner.py
|
|
@ -18,7 +18,7 @@ companies. |
|
|
|
|
|
|
|
.. 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 |
|
|
|
|
|
|
|
Bug Tracker |
|
|
|
=========== |
|
|
@ -41,6 +41,7 @@ Contributors |
|
|
|
|
|
|
|
* Yannick Vaucher <yannick.vaucher@camptocamp.com> |
|
|
|
* Vicent Cubells <vicent.cubells@tecnativa.com> |
|
|
|
* Dave Lasley <dave@laslabs.com> |
|
|
|
|
|
|
|
Maintainer |
|
|
|
---------- |
|
|
|
|
|
@ -4,7 +4,7 @@ |
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|
|
|
{ |
|
|
|
'name': 'Partner Affiliates', |
|
|
|
'version': '9.0.1.0.0', |
|
|
|
'version': '10.0.1.0.0', |
|
|
|
'author': "Camptocamp, " |
|
|
|
"Tecnativa, " |
|
|
|
"Odoo Community Association (OCA)", |
|
|
@ -13,7 +13,7 @@ |
|
|
|
'license': 'AGPL-3', |
|
|
|
'installable': True, |
|
|
|
'depends': [ |
|
|
|
'base' |
|
|
|
'base', |
|
|
|
], |
|
|
|
'data': [ |
|
|
|
'views/res_partner_view.xml', |
|
|
|
|
|
@ -2,7 +2,7 @@ |
|
|
|
# Copyright 2012 Camptocamp SA - Yannick Vaucher |
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|
|
|
|
|
|
|
from openerp import fields, models |
|
|
|
from odoo import fields, models |
|
|
|
|
|
|
|
|
|
|
|
class ResPartner(models.Model): |
|
|
|