diff --git a/base_custom_info/README.rst b/base_custom_info/README.rst index 005080fa4..60eecd504 100644 --- a/base_custom_info/README.rst +++ b/base_custom_info/README.rst @@ -1,6 +1,6 @@ -.. 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 +.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 ================ Base Custom Info diff --git a/base_custom_info/__init__.py b/base_custom_info/__init__.py index 5faa0139b..cc6e9affa 100644 --- a/base_custom_info/__init__.py +++ b/base_custom_info/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # © 2015 Antiun Ingeniería S.L. - Sergio Teruel # © 2015 Antiun Ingeniería S.L. - Carlos Dauden -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html from . import models diff --git a/base_custom_info/__manifest__.py b/base_custom_info/__manifest__.py index b64308e55..603362e2f 100644 --- a/base_custom_info/__manifest__.py +++ b/base_custom_info/__manifest__.py @@ -31,5 +31,5 @@ 'Odoo Community Association (OCA)', 'website': 'http://www.antiun.com', 'license': 'AGPL-3', - 'installable': False, + 'installable': True, } diff --git a/base_custom_info/models/__init__.py b/base_custom_info/models/__init__.py index 278faf2ff..4ce49af98 100644 --- a/base_custom_info/models/__init__.py +++ b/base_custom_info/models/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # © 2015 Antiun Ingeniería S.L. - Sergio Teruel # © 2015 Antiun Ingeniería S.L. - Carlos Dauden -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html from . import custom_info diff --git a/base_custom_info/models/custom_info.py b/base_custom_info/models/custom_info.py index ed353cce2..297a25ade 100644 --- a/base_custom_info/models/custom_info.py +++ b/base_custom_info/models/custom_info.py @@ -2,7 +2,7 @@ # © 2015 Antiun Ingeniería S.L. - Sergio Teruel # © 2015 Antiun Ingeniería S.L. - Carlos Dauden # © 2015 Antiun Ingeniería S.L. - Jairo Llopis -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html from openerp import api, fields, models