diff --git a/partner_identifiers/README.rst b/partner_identifiers/README.rst index d9fa80853..59c0e393f 100644 --- a/partner_identifiers/README.rst +++ b/partner_identifiers/README.rst @@ -1,3 +1,8 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +============================== Partner Identification Numbers ============================== @@ -42,6 +47,10 @@ any IDs to this partner, defining: * Valid until : Expiration date. For example, date when person needs to renew his driver license, 21/10/2019 * Notes : Any further information related with this ID. For example, vehicle types this person can drive +.. 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 + Known issues / Roadmap ====================== @@ -50,9 +59,22 @@ If you want to search a partner by ID you will use advance search form. You can't search by issuer, valid dates, category or notes. +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. 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 +`_. + Credits ======= Contributors ------------ * Antonio Espinosa + diff --git a/partner_identifiers/__init__.py b/partner_identifiers/__init__.py index 71b720ebd..a77a6fcbc 100644 --- a/partner_identifiers/__init__.py +++ b/partner_identifiers/__init__.py @@ -1,29 +1,4 @@ # -*- coding: utf-8 -*- -# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL -# http://tiny.be -# Copyright (C) 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH -# http://www.camptocamp.at -# Copyright (C) 2015 Antiun Ingenieria, SL (Madrid, Spain) -# http://www.antiun.com -# Antonio Espinosa -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import models diff --git a/partner_identifiers/__openerp__.py b/partner_identifiers/__openerp__.py index 315ad9b42..c4d588074 100644 --- a/partner_identifiers/__openerp__.py +++ b/partner_identifiers/__openerp__.py @@ -1,40 +1,18 @@ # -*- coding: utf-8 -*- -# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ -############################################################################## # -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL -# http://tiny.be -# Copyright (C) 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH -# http://www.camptocamp.at -# Copyright (C) 2015 Antiun Ingenieria, SL (Madrid, Spain) -# http://www.antiun.com -# Antonio Espinosa -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - +# © 2004-2010 Tiny SPRL http://tiny.be +# © 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH +# http://www.camptocamp.at +# © 2015 Antiun Ingenieria, SL (Madrid, Spain) +# http://www.antiun.com +# Antonio Espinosa +# © 2016 ACSONE SA/NV () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { # Addon information 'name': 'Partner Identification Numbers', 'category': 'Customer Relationship Management', - 'version': '1.0', - 'depends': [ - 'crm', - ], - 'external_dependencies': {}, + 'version': '9.0.1.0.0', # Views templates, pages, menus, options and snippets 'data': [ 'views/res_partner_id_category_view.xml', @@ -42,22 +20,14 @@ 'views/res_partner_view.xml', 'security/ir.model.access.csv', ], - # Qweb templates - 'qweb': [ - ], # Your information 'author': 'ChriCar Beteiligungs- und Beratungs- GmbH, ' 'Antiun Ingeniería S.L.', - 'maintainer': 'ChriCar Beteiligungs- und Beratungs- GmbH, ' - 'Antiun Ingeniería S.L.', - 'website': 'http://www.camptocamp.at, ' - 'http://www.antiun.com', + 'Camptocamp,' + 'ACSONE SA/NV,' + 'Odoo Community Association (OCA)' + 'website': 'https://odoo-community.org/', 'license': 'AGPL-3', - # Technical options - 'demo': [], - 'test': [], 'installable': True, - # 'auto_install':False, - # 'active':True, } diff --git a/partner_identifiers/models/__init__.py b/partner_identifiers/models/__init__.py index 08087f779..699c4c59d 100644 --- a/partner_identifiers/models/__init__.py +++ b/partner_identifiers/models/__init__.py @@ -1,30 +1,5 @@ # -*- coding: utf-8 -*- -# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL -# http://tiny.be -# Copyright (C) 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH -# http://www.camptocamp.at -# Copyright (C) 2015 Antiun Ingenieria, SL (Madrid, Spain) -# http://www.antiun.com -# Antonio Espinosa -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import res_partner_id_number from . import res_partner_id_category diff --git a/partner_identifiers/models/res_partner.py b/partner_identifiers/models/res_partner.py index 58bc0f6b8..63b8fcd42 100644 --- a/partner_identifiers/models/res_partner.py +++ b/partner_identifiers/models/res_partner.py @@ -1,30 +1,12 @@ # -*- coding: utf-8 -*- -# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ -############################################################################## # -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL -# http://tiny.be -# Copyright (C) 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH -# http://www.camptocamp.at -# Copyright (C) 2015 Antiun Ingenieria, SL (Madrid, Spain) -# http://www.antiun.com -# Antonio Espinosa -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2004-2010 Tiny SPRL http://tiny.be +# © 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH +# http://www.camptocamp.at +# © 2015 Antiun Ingenieria, SL (Madrid, Spain) +# http://www.antiun.com +# Antonio Espinosa +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, fields diff --git a/partner_identifiers/models/res_partner_id_category.py b/partner_identifiers/models/res_partner_id_category.py index 0ea97114c..709f1656a 100644 --- a/partner_identifiers/models/res_partner_id_category.py +++ b/partner_identifiers/models/res_partner_id_category.py @@ -1,30 +1,13 @@ # -*- coding: utf-8 -*- -# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ -############################################################################## # -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL -# http://tiny.be -# Copyright (C) 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH -# http://www.camptocamp.at -# Copyright (C) 2015 Antiun Ingenieria, SL (Madrid, Spain) -# http://www.antiun.com -# Antonio Espinosa -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2004-2010 Tiny SPRL http://tiny.be +# © 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH +# http://www.camptocamp.at +# © 2015 Antiun Ingenieria, SL (Madrid, Spain) +# http://www.antiun.com +# Antonio Espinosa +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from openerp import models, fields diff --git a/partner_identifiers/models/res_partner_id_number.py b/partner_identifiers/models/res_partner_id_number.py index 4c97d0c20..a2f7a4acf 100644 --- a/partner_identifiers/models/res_partner_id_number.py +++ b/partner_identifiers/models/res_partner_id_number.py @@ -1,30 +1,13 @@ # -*- coding: utf-8 -*- -# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ -############################################################################## # -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL -# http://tiny.be -# Copyright (C) 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH -# http://www.camptocamp.at -# Copyright (C) 2015 Antiun Ingenieria, SL (Madrid, Spain) -# http://www.antiun.com -# Antonio Espinosa -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2004-2010 Tiny SPRL http://tiny.be +# © 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH +# http://www.camptocamp.at +# © 2015 Antiun Ingenieria, SL (Madrid, Spain) +# http://www.antiun.com +# Antonio Espinosa +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from openerp import models, fields diff --git a/partner_identifiers/views/res_partner_view.xml b/partner_identifiers/views/res_partner_view.xml index a1188af9b..eddea27a9 100644 --- a/partner_identifiers/views/res_partner_view.xml +++ b/partner_identifiers/views/res_partner_view.xml @@ -9,12 +9,12 @@ - - - - - + + + + +