-
-
Notifications
You must be signed in to change notification settings - Fork 350
l10n_it_fiscalcode refactor and port to v9 #203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
6c41050
f39db81
6a8a613
d7a72bb
858c3c5
5fa1cbc
01974f8
c3a5a94
ebdb957
7cba87d
b5dbe56
a39d13f
e8befb6
4a7139d
425df0e
4264f3d
bfd8bf2
13f68e0
a13162b
575d70a
9aa065a
a32ea73
d5b2951
6060b06
85d0ec9
452d9a5
7ee3469
90773dd
a988fbe
8b1d6bc
f255b9c
15e2026
e0f00fe
94c5537
b091295
f7a746c
fc1289b
39ebfb6
6bf4891
f2cdc33
d9b9c8f
32fc5eb
ea581a3
21f3880
70a99c9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg | ||
| :alt: License | ||
|
|
||
| Fiscalcode | ||
| ========== | ||
|
|
||
| This module adds fiscalcode field to partner and formal validate it when save the partner. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. validate -> validates
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok |
||
|
|
||
| Installation | ||
| ============ | ||
|
|
||
| This module depend on python package codicefiscale. | ||
|
|
||
| Configuration | ||
| ============= | ||
|
|
||
| Nothing special is needed to install this module. | ||
|
|
||
|
|
||
| Known issues / Roadmap | ||
| ====================== | ||
|
|
||
| * company fiscal code formal validation. Today only lenght and digts are checked. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. digts -> digits
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. :) tks |
||
|
|
||
|
|
||
| Bug Tracker | ||
| =========== | ||
|
|
||
| Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-italy/issues>`_. | ||
| In case of trouble, please check there if your issue has already been reported. | ||
| If you spotted it first, help us smashing it by providing a detailed and welcomed feedback | ||
| `here <https://github.com/OCA/l10n-italy/issues/new?body=module:%20l10n_it_ipa%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. wrong module name
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. bad copy and paste ... done |
||
|
|
||
|
|
||
| Credits | ||
| ======= | ||
|
|
||
| Contributors | ||
| ------------ | ||
|
|
||
| * Davide Corio <davide.corio@domsense.com> | ||
| * Luca Subiaco <subluca@gmail.com> | ||
| * Simone Orsi <simone.orsi@domsense.com> | ||
| * Mario Riva <mario.riva@domsense.com> | ||
| * Mauro Soligo <mauro.soligo@katodo.com> | ||
| * Giovanni Barzan <giovanni.barzan@gmail.com> | ||
| * Lorenzo Battistini <lorenzo.battistini@albatos.com> | ||
| * Roberto Onnis <onnis.roberto@gmail.com> | ||
| * Franco Tampieri <franco.tampieri@agilebg.com> | ||
| * Andrea Cometa <info@andreacometa.it> | ||
| * Luigi Di Naro <Luigi.DiNaro@ktec.it> | ||
|
|
||
| Maintainer | ||
| ---------- | ||
|
|
||
| .. image:: http://odoo-community.org/logo.png | ||
| :alt: Odoo Community Association | ||
| :target: http://odoo-community.org | ||
|
|
||
| This module is maintained by the OCA. | ||
|
|
||
| OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. | ||
|
|
||
| To contribute to this module, please visit http://odoo-community.org. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,20 +20,8 @@ | |
| ############################################################################## | ||
| { | ||
| 'name': 'Italian Localisation - Fiscal Code', | ||
| 'version': '8.0.0.1.0', | ||
| 'version': '9.0.0.1.0', | ||
| 'category': 'Localisation/Italy', | ||
| 'description': """ | ||
| This module customizes Odoo in order to fit italian laws and mores | ||
|
|
||
| Functionalities: | ||
|
|
||
| - Fiscal code computation for partner | ||
|
|
||
| External depends: | ||
|
|
||
| * Python codicefiscale https://pypi.python.org/pypi/codicefiscale | ||
|
|
||
| """, | ||
| 'author': "Odoo Italian Community,Odoo Community Association (OCA)", | ||
| 'website': 'http://www.odoo-italia.org', | ||
| 'license': 'AGPL-3', | ||
|
|
@@ -42,16 +30,10 @@ | |
| 'python': ['codicefiscale'], | ||
| }, | ||
| 'data': [ | ||
| 'view/fiscalcode_view.xml', | ||
| 'wizard/compute_fc_view.xml', | ||
| 'data/res.city.it.code.csv', | ||
| "security/ir.model.access.csv" | ||
| 'view/fiscalcode_view.xml' | ||
| ], | ||
| 'qweb': [], | ||
| 'images': [], | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. empty items should be removed
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oca bot throw a warning because images is required tag .. remove qweb tag but let images ... |
||
| 'demo': [], | ||
| 'test': [ | ||
| 'test/fiscalcode.yml', | ||
| ], | ||
| 'active': False, | ||
| 'installable': False | ||
| 'installable': True | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this file, as this list is already contained in README.rst