Skip to content

Commit

Permalink
First implementation of fiscalcode module for v8
Browse files Browse the repository at this point in the history
Added act_window_close to fiscalcode popup but doesn't seem to work
  • Loading branch information
Franco Alberganti authored and eLBati committed Oct 30, 2018
1 parent ca50a50 commit aefd4d2
Show file tree
Hide file tree
Showing 15 changed files with 14,781 additions and 0 deletions.
10 changes: 10 additions & 0 deletions l10n_it_fiscalcode/AUTHORS.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Davide Corio <[email protected]>
Luca Subiaco <[email protected]>
Simone Orsi <[email protected]>
Mario Riva <[email protected]>
Mauro Soligo <[email protected]>
Giovanni Barzan <[email protected]>
Lorenzo Battistini <[email protected]>
Roberto Onnis <[email protected]>
Franco Tampieri <[email protected]>
Andrea Cometa <[email protected]>
23 changes: 23 additions & 0 deletions l10n_it_fiscalcode/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Copyright (C) 2014 Associazione Odoo Italia
# (<http://www.openerp-italia.org>).
#
# 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 model
import wizard
51 changes: 51 additions & 0 deletions l10n_it_fiscalcode/__openerp__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Copyright (C) 2014 Associazione Odoo Italia
# (<http://www.openerp-italia.org>).
#
# 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': 'Italian Localisation - Fiscal Code',
'version': '0.1',
'category': 'Localisation/Italy',
'description': """
This module customizes OpenERP in order to fit italian laws and mores - Account version
Functionalities:
- Fiscal code computation for partner
""",
'author': 'OpenERP Italian Community',
'website': 'http://www.openerp-italia.org',
'license': 'AGPL-3',
'depends': ['base', 'l10n_it_base'],
'data': [
'view/fiscalcode_view.xml',
'wizard/compute_fc_view.xml',
'data/res.city.it.code.csv',
"security/ir.model.access.csv"
],
'qweb': [],
'demo': [],
'test': [],
'test': [
'test/fiscalcode.yml',
],
'active': False,
'installable': True
}
Loading

0 comments on commit aefd4d2

Please sign in to comment.