Skip to content

Commit cc71f40

Browse files
committed
Merge PR #4988 into 18.0
Signed-off-by tafaRU
2 parents f6282d6 + 11ea29f commit cc71f40

11 files changed

Lines changed: 609 additions & 0 deletions

File tree

l10n_it_fiscalcode_sale/README.rst

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
===================================
2+
ITA - Codice fiscale nel preventivo
3+
===================================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:5491735f44100d8c6f698a85453b4db75009264ceba5eedb62f931965dd71648
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--italy-lightgray.png?logo=github
20+
:target: https://github.com/OCA/l10n-italy/tree/18.0/l10n_it_fiscalcode_sale
21+
:alt: OCA/l10n-italy
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/l10n-italy-18-0/l10n-italy-18-0-l10n_it_fiscalcode_sale
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-italy&target_branch=18.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
Permette di mostrare il codice fiscale del cliente nella stampa del
32+
preventivo / ordine di vendita.
33+
34+
**Table of contents**
35+
36+
.. contents::
37+
:local:
38+
39+
Bug Tracker
40+
===========
41+
42+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-italy/issues>`_.
43+
In case of trouble, please check there if your issue has already been reported.
44+
If you spotted it first, help us to smash it by providing a detailed and welcomed
45+
`feedback <https://github.com/OCA/l10n-italy/issues/new?body=module:%20l10n_it_fiscalcode_sale%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
46+
47+
Do not contact contributors directly about support or help with technical issues.
48+
49+
Credits
50+
=======
51+
52+
Authors
53+
-------
54+
55+
* TAKOBI
56+
* Nextev Srl
57+
58+
Contributors
59+
------------
60+
61+
- Lorenzo Battistini (`TAKOBI <https://takobi.online>`__)
62+
- `Nextev Srl <https://www.nextev.it>`__
63+
- Alex Comba alex.comba@agilebg.com (https://www.agilebg.com/)
64+
65+
Maintainers
66+
-----------
67+
68+
This module is maintained by the OCA.
69+
70+
.. image:: https://odoo-community.org/logo.png
71+
:alt: Odoo Community Association
72+
:target: https://odoo-community.org
73+
74+
OCA, or the Odoo Community Association, is a nonprofit organization whose
75+
mission is to support the collaborative development of Odoo features and
76+
promote its widespread use.
77+
78+
.. |maintainer-eLBati| image:: https://github.com/eLBati.png?size=40px
79+
:target: https://github.com/eLBati
80+
:alt: eLBati
81+
82+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
83+
84+
|maintainer-eLBati|
85+
86+
This module is part of the `OCA/l10n-italy <https://github.com/OCA/l10n-italy/tree/18.0/l10n_it_fiscalcode_sale>`_ project on GitHub.
87+
88+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

l10n_it_fiscalcode_sale/__init__.py

Whitespace-only changes.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Copyright 2020 Lorenzo Battistini @ TAKOBI
2+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3+
{
4+
"name": "ITA - Codice fiscale nel preventivo",
5+
"summary": "Mostra il codice fiscale del cliente nella stampa del preventivo",
6+
"version": "18.0.1.0.0",
7+
"development_status": "Beta",
8+
"category": "Hidden",
9+
"website": "https://github.com/OCA/l10n-italy",
10+
"author": "TAKOBI, Nextev Srl, Odoo Community Association (OCA)",
11+
"maintainers": ["eLBati"],
12+
"license": "AGPL-3",
13+
"application": False,
14+
"installable": True,
15+
"auto_install": True,
16+
"depends": [
17+
"sale_management",
18+
"l10n_it_edi",
19+
],
20+
"data": [
21+
"views/sale_order_report.xml",
22+
],
23+
}

l10n_it_fiscalcode_sale/i18n/it.po

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * l10n_it_fiscalcode_sale
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 12.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2020-09-16 09:41+0000\n"
10+
"PO-Revision-Date: 2020-09-16 09:41+0000\n"
11+
"Last-Translator: <>\n"
12+
"Language-Team: \n"
13+
"Language: \n"
14+
"MIME-Version: 1.0\n"
15+
"Content-Type: text/plain; charset=UTF-8\n"
16+
"Content-Transfer-Encoding: \n"
17+
"Plural-Forms: \n"
18+
19+
#. module: l10n_it_fiscalcode_sale
20+
#: model_terms:ir.ui.view,arch_db:l10n_it_fiscalcode_sale.report_saleorder_document_fiscal_fields_ext
21+
msgid "<span>Fiscal code: </span>"
22+
msgstr "<span>Codice fiscale: </span>"
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * l10n_it_fiscalcode_sale
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"Last-Translator: \n"
10+
"Language-Team: \n"
11+
"MIME-Version: 1.0\n"
12+
"Content-Type: text/plain; charset=UTF-8\n"
13+
"Content-Transfer-Encoding: \n"
14+
"Plural-Forms: \n"
15+
16+
#. module: l10n_it_fiscalcode_sale
17+
#: model_terms:ir.ui.view,arch_db:l10n_it_fiscalcode_sale.report_saleorder_document_fiscal_fields_ext
18+
msgid "<span>Fiscal code: </span>"
19+
msgstr ""
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- Lorenzo Battistini ([TAKOBI](https://takobi.online))
2+
- [Nextev Srl](https://www.nextev.it)
3+
- Alex Comba alex.comba@agilebg.com (https://www.agilebg.com/)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Permette di mostrare il codice fiscale del cliente nella stampa del
2+
preventivo / ordine di vendita.
9.23 KB
Loading

0 commit comments

Comments
 (0)