forked from OCA/l10n-italy
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First implementation of fiscalcode module for v8
Added act_window_close to fiscalcode popup but doesn't seem to work
- Loading branch information
Showing
15 changed files
with
14,781 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
Oops, something went wrong.