Skip to content

Commit

Permalink
Merge 07b834c into 743fbb8
Browse files Browse the repository at this point in the history
  • Loading branch information
renatonlima committed Jul 7, 2015
2 parents 743fbb8 + 07b834c commit d898dba
Show file tree
Hide file tree
Showing 20 changed files with 321 additions and 303 deletions.
23 changes: 0 additions & 23 deletions __unported__/l10n_br_zip/__init__.py

This file was deleted.

39 changes: 0 additions & 39 deletions __unported__/l10n_br_zip/__openerp__.py

This file was deleted.

20 changes: 0 additions & 20 deletions __unported__/l10n_br_zip/wizard/__init__.py

This file was deleted.

177 changes: 0 additions & 177 deletions __unported__/l10n_br_zip/wizard/l10n_br_zip_search.py

This file was deleted.

File renamed without changes.
21 changes: 21 additions & 0 deletions l10n_br_zip/__init__.py
@@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
###############################################################################
#
# Copyright (C) 2009 Renato Lima - Akretion
#
# 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/>.
###############################################################################

from . import models
from . import wizard
39 changes: 39 additions & 0 deletions l10n_br_zip/__openerp__.py
@@ -0,0 +1,39 @@
# -*- coding: utf-8 -*-
###############################################################################
#
# Copyright (C) 2009 Renato Lima - Akretion
#
# 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': 'Brazilian Localisation ZIP Codes',
'description': 'Brazilian Localisation ZIP Codes',
'license': 'AGPL-3',
'author': 'Akretion, Odoo Brasil',
'version': '8.0',
'depends': [
'l10n_br_base',
],
'data': [
'views/l10n_br_zip_view.xml',
'views/res_partner_view.xml',
'views/res_company_view.xml',
'wizard/l10n_br_zip_search_view.xml',
'security/ir.model.access.csv',
],
'demo': [],
'category': 'Localization',
'installable': True,
}
File renamed without changes.
22 changes: 22 additions & 0 deletions l10n_br_zip/models/__init__.py
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
###############################################################################
#
# Copyright (C) 2015 Renato Lima - Akretion
#
# 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/>.
###############################################################################

from . import l10n_br_zip
from . import res_company
from . import res_partner

0 comments on commit d898dba

Please sign in to comment.