Browse Source
[MIG] base_location: Migrated to 10.0
[MIG] base_location: Migrated to 10.0
* Headers shortened * Move cities management to settings14.0
Francesco Apruzzese
8 years ago
committed by
Pedro M. Baeza
16 changed files with 196 additions and 316 deletions
-
5base_location/README.rst
-
23base_location/__init__.py
-
30base_location/__manifest__.py
-
54base_location/__openerp__.py
-
6base_location/models/__init__.py
-
25base_location/models/better_zip.py
-
28base_location/models/company.py
-
27base_location/models/partner.py
-
26base_location/models/state.py
-
5base_location/tests/__init__.py
-
7base_location/tests/test_completion.py
-
22base_location/views/better_zip_view.xml
-
6base_location/views/company_view.xml
-
6base_location/views/partner_view.xml
-
6base_location/views/res_country_view.xml
-
8base_location/views/state_view.xml
@ -1,24 +1,5 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################## |
|||
# |
|||
# Author: Nicolas Bessi. Copyright Camptocamp SA |
|||
# Contributor: Pedro Manuel Baeza <pedro.baeza@serviciosbaeza.com> |
|||
# Ignacio Ibeas <ignacio@acysos.com> |
|||
# Alejandro Santana <alejandrosantana@anubia.es> |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################## |
|||
# Copyright 2016 Nicolas Bessi, Camptocamp SA |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
|
|||
from . import models |
@ -0,0 +1,30 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright 2016 Nicolas Bessi, Camptocamp SA |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
|
|||
{ |
|||
'name': 'Location management (aka Better ZIP)', |
|||
'version': '10.0.1.0.0', |
|||
'depends': [ |
|||
'base', |
|||
], |
|||
'author': "Camptocamp," |
|||
"ACYSOS S.L.," |
|||
"Alejandro Santana," |
|||
"Tecnativa," |
|||
"Odoo Community Association (OCA)", |
|||
'license': "AGPL-3", |
|||
'summary': '''Enhanced zip/npa management system''', |
|||
'website': 'http://www.camptocamp.com', |
|||
'data': ['views/better_zip_view.xml', |
|||
'views/state_view.xml', |
|||
'views/res_country_view.xml', |
|||
'views/company_view.xml', |
|||
'views/partner_view.xml', |
|||
'security/ir.model.access.csv'], |
|||
'demo': [ |
|||
'demo/better_zip.xml', |
|||
], |
|||
'installable': True, |
|||
'auto_install': False, |
|||
} |
@ -1,54 +0,0 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################## |
|||
# |
|||
# Author: Nicolas Bessi. Copyright Camptocamp SA |
|||
# Contributor: Pedro Manuel Baeza <pedro.baeza@serviciosbaeza.com> |
|||
# Ignacio Ibeas <ignacio@acysos.com> |
|||
# Alejandro Santana <alejandrosantana@anubia.es> |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################## |
|||
{ |
|||
'name': 'Location management (aka Better ZIP)', |
|||
'version': '9.0.1.0.0', |
|||
'depends': ['base'], |
|||
'author': "Camptocamp," |
|||
"ACYSOS S.L.," |
|||
"Alejandro Santana," |
|||
"Serv. Tecnol. Avanzados - Pedro M. Baeza," |
|||
"Odoo Community Association (OCA)", |
|||
'license': "AGPL-3", |
|||
'contributors': [ |
|||
'Nicolas Bessi <nicolas.bessi@camptocamp.com>', |
|||
'Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>', |
|||
'Ignacio Ibeas (Acysos S.L.)', |
|||
'Alejandro Santana <alejandrosantana@anubia.es>', |
|||
'Sandy Carter <sandy.carter@savoirfairelinux.com>', |
|||
'Yannick Vaucher <yannick.vaucher@camptocamp.com>', |
|||
], |
|||
'summary': '''Enhanced zip/npa management system''', |
|||
'website': 'http://www.camptocamp.com', |
|||
'data': ['views/better_zip_view.xml', |
|||
'views/state_view.xml', |
|||
'views/res_country_view.xml', |
|||
'views/company_view.xml', |
|||
'views/partner_view.xml', |
|||
'security/ir.model.access.csv'], |
|||
'demo': [ |
|||
'demo/better_zip.xml', |
|||
], |
|||
'installable': True, |
|||
'auto_install': False, |
|||
} |
@ -1,4 +1,5 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2015 Yannick Vaucher (Camptocamp) |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
# Copyright 2015 Yannick Vaucher, Camptocamp SA |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
|
|||
from . import test_completion |
Write
Preview
Loading…
Cancel
Save
Reference in new issue