odoo-addon-l10n-it-edi-extension 18.0.1.0.0.30__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/l10n_it_edi_extension/README.rst +493 -0
- odoo/addons/l10n_it_edi_extension/__init__.py +951 -0
- odoo/addons/l10n_it_edi_extension/__manifest__.py +37 -0
- odoo/addons/l10n_it_edi_extension/controllers/__init__.py +1 -0
- odoo/addons/l10n_it_edi_extension/controllers/portal.py +27 -0
- odoo/addons/l10n_it_edi_extension/data/FoglioStileAssoSoftware.xsl +3150 -0
- odoo/addons/l10n_it_edi_extension/data/invoice_it_template.xml +50 -0
- odoo/addons/l10n_it_edi_extension/data/res.city.it.code.csv +13898 -0
- odoo/addons/l10n_it_edi_extension/i18n/l10n_it_edi_extension.pot +1167 -0
- odoo/addons/l10n_it_edi_extension/i18n/l10n_it_edi_fatturapa.pot +44 -0
- odoo/addons/l10n_it_edi_extension/models/__init__.py +15 -0
- odoo/addons/l10n_it_edi_extension/models/account_journal.py +152 -0
- odoo/addons/l10n_it_edi_extension/models/account_move.py +765 -0
- odoo/addons/l10n_it_edi_extension/models/account_move_line.py +10 -0
- odoo/addons/l10n_it_edi_extension/models/ir_attachment.py +37 -0
- odoo/addons/l10n_it_edi_extension/models/l10n_it_edi_activity_progress.py +14 -0
- odoo/addons/l10n_it_edi_extension/models/l10n_it_edi_article_code.py +15 -0
- odoo/addons/l10n_it_edi_extension/models/l10n_it_edi_discount_rise_price.py +25 -0
- odoo/addons/l10n_it_edi_extension/models/l10n_it_edi_line.py +48 -0
- odoo/addons/l10n_it_edi_extension/models/l10n_it_edi_line_other_data.py +17 -0
- odoo/addons/l10n_it_edi_extension/models/l10n_it_edi_summary_data.py +77 -0
- odoo/addons/l10n_it_edi_extension/models/res_city_it_code.py +83 -0
- odoo/addons/l10n_it_edi_extension/models/res_company.py +62 -0
- odoo/addons/l10n_it_edi_extension/models/res_partner.py +64 -0
- odoo/addons/l10n_it_edi_extension/readme/CONFIGURE.md +45 -0
- odoo/addons/l10n_it_edi_extension/readme/CONTRIBUTORS.md +5 -0
- odoo/addons/l10n_it_edi_extension/readme/DESCRIPTION.md +160 -0
- odoo/addons/l10n_it_edi_extension/security/ir.model.access.csv +14 -0
- odoo/addons/l10n_it_edi_extension/static/description/icon.png +0 -0
- odoo/addons/l10n_it_edi_extension/static/description/index.html +832 -0
- odoo/addons/l10n_it_edi_extension/tests/__init__.py +2 -0
- odoo/addons/l10n_it_edi_extension/tests/import_xmls/IT01234567890_FPR03.xml +166 -0
- odoo/addons/l10n_it_edi_extension/tests/import_xmls/IT02780790107_11004.xml +216 -0
- odoo/addons/l10n_it_edi_extension/tests/import_xmls/IT02780790107_11005.xml +224 -0
- odoo/addons/l10n_it_edi_extension/tests/import_xmls/IT05979361218_003.xml +107 -0
- odoo/addons/l10n_it_edi_extension/tests/import_xmls/test.png +0 -0
- odoo/addons/l10n_it_edi_extension/tests/import_xmls/xml_import.zip +0 -0
- odoo/addons/l10n_it_edi_extension/tests/test_fiscalcode.py +126 -0
- odoo/addons/l10n_it_edi_extension/tests/test_import_edi_extension_xml.py +350 -0
- odoo/addons/l10n_it_edi_extension/views/company_view.xml +41 -0
- odoo/addons/l10n_it_edi_extension/views/l10n_it_view.xml +164 -0
- odoo/addons/l10n_it_edi_extension/views/res_partner_view.xml +19 -0
- odoo/addons/l10n_it_edi_extension/wizards/__init__.py +2 -0
- odoo/addons/l10n_it_edi_extension/wizards/compute_fc.py +176 -0
- odoo/addons/l10n_it_edi_extension/wizards/compute_fc_view.xml +65 -0
- odoo/addons/l10n_it_edi_extension/wizards/l10n_it_edi_import_file_wizard.py +98 -0
- odoo/addons/l10n_it_edi_extension/wizards/l10n_it_edi_import_file_wizard.xml +46 -0
- odoo_addon_l10n_it_edi_extension-18.0.1.0.0.30.dist-info/METADATA +513 -0
- odoo_addon_l10n_it_edi_extension-18.0.1.0.0.30.dist-info/RECORD +51 -0
- odoo_addon_l10n_it_edi_extension-18.0.1.0.0.30.dist-info/WHEEL +5 -0
- odoo_addon_l10n_it_edi_extension-18.0.1.0.0.30.dist-info/top_level.txt +1 -0
@@ -0,0 +1,493 @@
|
|
1
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
2
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
3
|
+
:alt: Odoo Community Association
|
4
|
+
|
5
|
+
==================================
|
6
|
+
Italy - E-invoicing - Base Feature
|
7
|
+
==================================
|
8
|
+
|
9
|
+
..
|
10
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
11
|
+
!! This file is generated by oca-gen-addon-readme !!
|
12
|
+
!! changes will be overwritten. !!
|
13
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
14
|
+
!! source digest: sha256:cda4b8a841e664f846025070441ecdc463a7890289d6b7e879522fa44e6c08bb
|
15
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
16
|
+
|
17
|
+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
18
|
+
:target: https://odoo-community.org/page/development-status
|
19
|
+
:alt: Beta
|
20
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
21
|
+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
22
|
+
:alt: License: AGPL-3
|
23
|
+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--italy-lightgray.png?logo=github
|
24
|
+
:target: https://github.com/OCA/l10n-italy/tree/18.0/l10n_it_edi_extension
|
25
|
+
:alt: OCA/l10n-italy
|
26
|
+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
27
|
+
:target: https://translation.odoo-community.org/projects/l10n-italy-18-0/l10n-italy-18-0-l10n_it_edi_extension
|
28
|
+
:alt: Translate me on Weblate
|
29
|
+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
30
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-italy&target_branch=18.0
|
31
|
+
:alt: Try me on Runboat
|
32
|
+
|
33
|
+
|badge1| |badge2| |badge3| |badge4| |badge5|
|
34
|
+
|
35
|
+
**Italiano**
|
36
|
+
|
37
|
+
Questo modulo estende le funzionalità standard della fatturazione
|
38
|
+
elettronica italiana di Odoo, introducendo strumenti utili come
|
39
|
+
l'anteprima XML ed il calcolo dei codici fiscali e miglioramenti
|
40
|
+
nell'importazione e nell'esportazione delle fatture XML.
|
41
|
+
|
42
|
+
Le funzionalità principali incluse sono:
|
43
|
+
|
44
|
+
1. Anteprima e Download del file XML:
|
45
|
+
|
46
|
+
- Aggiunge un pulsante ("Preview XML") direttamente nel form della
|
47
|
+
fattura.
|
48
|
+
- Dalla stessa finestra della fattura, è possibile scaricare il file
|
49
|
+
XML generato.
|
50
|
+
|
51
|
+
2. Valorizza i seguenti campi/nodi della fattura elettronica esportata:
|
52
|
+
|
53
|
+
- ``<RiferimentoAmministrazione>`` (sia sulla riga o nell'azienda):
|
54
|
+
identificativo utilizzato per uso amministrativo/gestionale
|
55
|
+
interno. È un campo libero che può essere utilizzato per inserire
|
56
|
+
riferimenti specifici richiesti dalla Pubblica Amministrazione o
|
57
|
+
altri riferimenti utili per la gestione amministrativa.
|
58
|
+
- ``<StabileOrganizzazione>``: rappresenta i dati della sede
|
59
|
+
operativa stabile del cedente/prestatore in Italia se diversa dalla
|
60
|
+
sede legale. Da impostare in odoo nell'azienda, tab "Informazioni
|
61
|
+
Generali"
|
62
|
+
- ``<Causale>``: in questo caso non c'è un campo apposito, ma
|
63
|
+
trascrive i "Termini e condizioni" della fattura
|
64
|
+
- ``<Art73>``: indica se il documento è stato emesso secondo modalità
|
65
|
+
e termini stabiliti con decreto ministeriale ai sensi dell'articolo
|
66
|
+
73 del DPR 633/72. Da impostare in odoo nell'azienda o direttamente
|
67
|
+
in fattura.
|
68
|
+
|
69
|
+
3. Miglioramenti nell'import delle fatture XML:
|
70
|
+
|
71
|
+
- Aggiunge un'opzione per creare i contatti presenti in una fattura
|
72
|
+
elettronica se non esistono in anagrafica tra cui:
|
73
|
+
|
74
|
+
- ``<CessionarioCommittente>`` e ``<CedentePrestatore>`` invece di
|
75
|
+
scrivere solamente i dettagli nel chatter.
|
76
|
+
|
77
|
+
- Creazione di altri contatti presenti in una fattura elettronica se
|
78
|
+
non esistono in anagrafica tra cui:
|
79
|
+
|
80
|
+
- ``<RappresentanteFiscale>``
|
81
|
+
|
82
|
+
- Nome e cognome vengono assegnati ai nuovi contatti in base ai nodi
|
83
|
+
``<Nome>`` e ``<Cognome>`` della fattura elettronica.
|
84
|
+
|
85
|
+
- Gestione delle Fatture Elettroniche Multiple:
|
86
|
+
|
87
|
+
- Supporto per la suddivisione automatica di file XML contenenti
|
88
|
+
più fatture
|
89
|
+
- Ogni ``<FatturaElettronicaBody>`` viene convertito in una fattura
|
90
|
+
separata mantenendo l'header originale
|
91
|
+
|
92
|
+
- Aggiunge la possibilità di scegliere tra 3 modalità di
|
93
|
+
importazione:
|
94
|
+
|
95
|
+
- senza righe
|
96
|
+
- una riga per ogni aliquota
|
97
|
+
- tutte le righe (default)
|
98
|
+
|
99
|
+
- Importazione dei ``<DatiRiepilogo>``:
|
100
|
+
|
101
|
+
- ``<AliquotaIVA>``
|
102
|
+
- ``<Natura>``: Indica il motivo per cui un'operazione non prevede
|
103
|
+
l'IVA
|
104
|
+
- ``<SpeseAccessorie>``: es. trasporto, imballaggio
|
105
|
+
- ``<Arrotondamento>``
|
106
|
+
- ``<ImponibileImporto>``
|
107
|
+
- ``<Imposta>``
|
108
|
+
- ``<EsigibilitaIVA>``: Indica quando l'IVA diventa esigibile
|
109
|
+
(immediata, differita o scissione dei pagamenti)
|
110
|
+
- ``<RiferimentoNormativo>``: Obbligatorio quando si usa il campo
|
111
|
+
``<Natura>``
|
112
|
+
|
113
|
+
- Importazione dei ``<DatiGeneraliDocumento>``:
|
114
|
+
|
115
|
+
- ``<Arrotondamento>``
|
116
|
+
- ``<Art73>``: indica se il documento è stato emesso secondo
|
117
|
+
modalità e termini stabiliti con decreto ministeriale ai sensi
|
118
|
+
dell'articolo 73 del DPR 633/72
|
119
|
+
- ``<DatiSAL>`` e ``<RiferimentoFase>``: utilizzati per indicare lo
|
120
|
+
stato di avanzamento dei lavori in caso di fatturazione
|
121
|
+
dilazionata/progressiva (contratti di appalto, servizi
|
122
|
+
continuativi o lavori in corso d'opera)
|
123
|
+
|
124
|
+
- Importazione dei dati della fattura principale
|
125
|
+
(``<NumeroFatturaPrincipale>`` e ``<DataFatturaPrincipale>``)
|
126
|
+
|
127
|
+
- Scrittura nel chatter dei nodi di ``<DatiGenerali><DatiTrasporto>``
|
128
|
+
e ``<DatiVeicoli>``
|
129
|
+
|
130
|
+
- Gestione avanzata dei Dati delle Righe Fattura:
|
131
|
+
|
132
|
+
- Creazione dei codici articolo in fase di importazione. Questi
|
133
|
+
codici servono per identificare univocamente i prodotti/servizi
|
134
|
+
secondo diversi standard di codifica. Nel file XML, questi codici
|
135
|
+
sono nel nodo ``<CodiceArticolo>`` che può contenere:
|
136
|
+
|
137
|
+
- ``<CodiceTipo>``: identifica il tipo di codifica utilizzata
|
138
|
+
- ``<CodiceValore>``: il valore effettivo del codice
|
139
|
+
|
140
|
+
- Registrazione dello sconto o maggiorazione, nodo
|
141
|
+
``<ScontoMaggiorazione>``, nelle righe di dettaglio della
|
142
|
+
fattura.
|
143
|
+
- Importazione dei dati del nodo ``<AltriDatiGestionali>``
|
144
|
+
(informazioni supplementari che non trovano posto negli altri
|
145
|
+
campi standard della fattura elettronica) che può contenere:
|
146
|
+
|
147
|
+
- ``<TipoDato>``: identifica il tipo di informazione aggiuntiva
|
148
|
+
che si sta inserendo
|
149
|
+
- ``<RiferimentoTesto>``: contiene un valore testuale
|
150
|
+
dell'informazione aggiuntiva
|
151
|
+
- ``<RiferimentoNumero>``: contiene un valore numerico
|
152
|
+
dell'informazione aggiuntiva
|
153
|
+
- ``<RiferimentoData>``: contiene un valore data
|
154
|
+
dell'informazione aggiuntiva
|
155
|
+
|
156
|
+
- Importazione dei nodi:
|
157
|
+
|
158
|
+
- ``<NumeroLinea>``: numero progressivo della riga all'interno
|
159
|
+
della fattura
|
160
|
+
- ``<TipoCessionePrestazione>``: indica la tipologia della
|
161
|
+
cessione o prestazione e può contenere valori come:
|
162
|
+
|
163
|
+
- "SC" (Sconto)
|
164
|
+
- "PR" (Premio)
|
165
|
+
- "AB" (Abbuono)
|
166
|
+
- "AC" (Spesa accessoria)
|
167
|
+
|
168
|
+
- ``<DataInizioPeriodo>`` e ``<DataFinePeriodo>``: indicano il
|
169
|
+
periodo di riferimento di una prestazione e sono utili per
|
170
|
+
servizi continuativi o prestazioni che si estendono su un
|
171
|
+
periodo di tempo
|
172
|
+
- ``<RiferimentoAmministrazione>``: identificativo utilizzato per
|
173
|
+
uso amministrativo/gestionale interno. È un campo libero che
|
174
|
+
può essere utilizzato per inserire riferimenti specifici
|
175
|
+
richiesti dalla Pubblica Amministrazione o altri riferimenti
|
176
|
+
utili per la gestione amministrativa.
|
177
|
+
|
178
|
+
- Convalida della fattura importata: se i seguenti importi sono
|
179
|
+
diversi da quelli presenti nel file XML, nella fattura viene
|
180
|
+
visualizzato un messaggio:
|
181
|
+
|
182
|
+
- importo totale imponibile
|
183
|
+
- IVA totale
|
184
|
+
- IVA inclusa
|
185
|
+
|
186
|
+
- I dati del partner possono essere aggiornati per corrispondere a
|
187
|
+
quelli nella fattura elettronica.
|
188
|
+
|
189
|
+
4. Aggiunge di un wizard per calcolare i codici fiscali
|
190
|
+
|
191
|
+
<https://www.fatturapa.gov.it>
|
192
|
+
|
193
|
+
**English**
|
194
|
+
|
195
|
+
This module extends Odoo's standard Italian electronic invoicing
|
196
|
+
functionality, introducing useful tools such as XML preview and fiscal
|
197
|
+
code calculation and improvements in importing and exporting XML
|
198
|
+
invoices.
|
199
|
+
|
200
|
+
The main features included are:
|
201
|
+
|
202
|
+
1. XML File Preview and Download:
|
203
|
+
|
204
|
+
- Adds a button ("Preview XML") directly in the invoice form.
|
205
|
+
- From the same invoice form, you can download the generated XML
|
206
|
+
file.
|
207
|
+
|
208
|
+
2. Adds fields in XML invoice export:
|
209
|
+
|
210
|
+
- ``<RiferimentoAmministrazione>`` (both on line or on company):
|
211
|
+
identifier used for internal administrative/management purposes.
|
212
|
+
It's a free field that can be used to insert specific references
|
213
|
+
required by Public Administration or other useful references for
|
214
|
+
administrative management.
|
215
|
+
- ``<StabileOrganizzazione>``: represents the data of the
|
216
|
+
seller/provider's permanent establishment in Italy if different
|
217
|
+
from the registered office
|
218
|
+
- ``<Causale>``: in this case there is no specific field, but it
|
219
|
+
transcribes the "Terms and conditions" of the invoice.
|
220
|
+
- ``<Art73>``: indicates if the document was issued according to
|
221
|
+
methods and terms established by ministerial decree pursuant to
|
222
|
+
article 73 of DPR 633/72
|
223
|
+
|
224
|
+
3. Improvements in XML invoice import:
|
225
|
+
|
226
|
+
- Adds an option to create contacts present in an electronic invoice
|
227
|
+
if they don't exist in the address book, including:
|
228
|
+
|
229
|
+
- ``<CessionarioCommittente>`` and ``<CedentePrestatore>`` instead
|
230
|
+
of just writing the details in the chatter.
|
231
|
+
|
232
|
+
- Creation of other contacts present in an electronic invoice if they
|
233
|
+
don't exist in the address book, including:
|
234
|
+
|
235
|
+
- ``<RappresentanteFiscale>``
|
236
|
+
|
237
|
+
- Name and surname are set in the new contacts based on the
|
238
|
+
``<Nome>`` and ``<Cognome>`` nodes of the E-Bill.
|
239
|
+
|
240
|
+
- Multiple Electronic Invoice Management:
|
241
|
+
|
242
|
+
- Support for automatic splitting of XML files containing multiple
|
243
|
+
invoices
|
244
|
+
- Each ``<FatturaElettronicaBody>`` is converted into a separate
|
245
|
+
invoice maintaining the original header
|
246
|
+
|
247
|
+
- Adds the ability to choose between 3 import modes:
|
248
|
+
|
249
|
+
- without lines
|
250
|
+
- one line for each VAT rate
|
251
|
+
- all lines (default)
|
252
|
+
|
253
|
+
- Import of ``<DatiRiepilogo>``:
|
254
|
+
|
255
|
+
- ``<AliquotaIVA>``
|
256
|
+
- ``<Natura>``: Indicates the reason why an operation does not
|
257
|
+
include VAT
|
258
|
+
- ``<SpeseAccessorie>``: e.g., transport, packaging
|
259
|
+
- ``<Arrotondamento>``
|
260
|
+
- ``<ImponibileImporto>``
|
261
|
+
- ``<Imposta>``
|
262
|
+
- ``<EsigibilitaIVA>``: Indicates when VAT becomes payable
|
263
|
+
(immediate, deferred, or split payment)
|
264
|
+
- ``<RiferimentoNormativo>``: Required when using the ``<Natura>``
|
265
|
+
field
|
266
|
+
|
267
|
+
- Import of ``<DatiGeneraliDocumento>``:
|
268
|
+
|
269
|
+
- ``<Arrotondamento>``
|
270
|
+
- ``<Art73>``: indicates if the document was issued according to
|
271
|
+
methods and terms established by ministerial decree pursuant to
|
272
|
+
article 73 of DPR 633/72
|
273
|
+
- ``<DatiSAL>`` and ``<RiferimentoFase>``: used to indicate the
|
274
|
+
progress status of work in case of deferred/progressive invoicing
|
275
|
+
(procurement contracts, continuous services, or work in progress)
|
276
|
+
|
277
|
+
- Import of main invoice data (``<NumeroFatturaPrincipale>`` and
|
278
|
+
``<DataFatturaPrincipale>``)
|
279
|
+
|
280
|
+
- Writing in chatter of ``<DatiGenerali><DatiTrasporto>`` and
|
281
|
+
``<DatiVeicoli>`` nodes
|
282
|
+
|
283
|
+
- Advanced management of Invoice Line Data:
|
284
|
+
|
285
|
+
- Creation of article codes during import. These codes are used to
|
286
|
+
uniquely identify products/services according to different coding
|
287
|
+
standards. In the XML file, these codes are in the
|
288
|
+
``<CodiceArticolo>`` node which can contain:
|
289
|
+
|
290
|
+
- ``<CodiceTipo>``: identifies the type of coding used
|
291
|
+
- ``<CodiceValore>``: the actual code value
|
292
|
+
|
293
|
+
- Recording of discounts or surcharges, ``<ScontoMaggiorazione>``,
|
294
|
+
in the invoice detail lines.
|
295
|
+
- Import of ``<AltriDatiGestionali>`` node data (supplementary
|
296
|
+
information that doesn't fit in other standard electronic invoice
|
297
|
+
fields) which can contain:
|
298
|
+
|
299
|
+
- ``<TipoDato>``: identifies the type of additional information
|
300
|
+
being entered
|
301
|
+
- ``<RiferimentoTesto>``: contains a textual value of the
|
302
|
+
additional information
|
303
|
+
- ``<RiferimentoNumero>``: contains a numerical value of the
|
304
|
+
additional information
|
305
|
+
- ``<RiferimentoData>``: contains a date value of the additional
|
306
|
+
information
|
307
|
+
|
308
|
+
- Import of nodes:
|
309
|
+
|
310
|
+
- ``<NumeroLinea>``: progressive line number within the invoice
|
311
|
+
- ``<TipoCessionePrestazione>``: indicates the type of transfer
|
312
|
+
or service and can contain values such as:
|
313
|
+
|
314
|
+
- "SC" (Discount)
|
315
|
+
- "PR" (Prize)
|
316
|
+
- "AB" (Allowance)
|
317
|
+
- "AC" (Ancillary expense)
|
318
|
+
|
319
|
+
- ``<DataInizioPeriodo>`` and ``<DataFinePeriodo>``: indicate the
|
320
|
+
reference period of a service and are useful for continuous
|
321
|
+
services or services that extend over a period of time
|
322
|
+
- ``<RiferimentoAmministrazione>``: identifier used for internal
|
323
|
+
administrative/management purposes. It's a free field that can
|
324
|
+
be used to insert specific references required by Public
|
325
|
+
Administration or other useful references for administrative
|
326
|
+
management.
|
327
|
+
|
328
|
+
- Validation of imported bill: if the following amounts are different
|
329
|
+
than the amount in the XML a message is shown in the bill:
|
330
|
+
|
331
|
+
- total taxable amount
|
332
|
+
- total VAT
|
333
|
+
- total including VAT
|
334
|
+
|
335
|
+
- Partner's data can be updated to match the data in the e-bill
|
336
|
+
|
337
|
+
4. Adds a wizard to calculate fiscal codes
|
338
|
+
|
339
|
+
<https://www.fatturapa.gov.it>
|
340
|
+
|
341
|
+
**Table of contents**
|
342
|
+
|
343
|
+
.. contents::
|
344
|
+
:local:
|
345
|
+
|
346
|
+
Configuration
|
347
|
+
=============
|
348
|
+
|
349
|
+
**Italiano**
|
350
|
+
|
351
|
+
Le uniche configurazioni disponibili sono:
|
352
|
+
|
353
|
+
- Livello di dettaglio importazione e-fatture: in Fatturazione (o
|
354
|
+
Contabilità per EE) > Configurazione > Impostazioni > Fatturazione
|
355
|
+
Elettronica Italiana, valorizzare "Livello di dettaglio importazione
|
356
|
+
e-fatture" per importare le fatture elettroniche senza righe, con una
|
357
|
+
riga per ogni aliquota, oppure con tutte le righe (default). Questa
|
358
|
+
configurazione può essere sovrascritta dal campo "Livello di dettaglio
|
359
|
+
importazione e-fatture" in ogni fornitore.
|
360
|
+
- Crea il partner se non esiste durante l'importazione: in Fatturazione
|
361
|
+
(o Contabilità per EE) > Configurazione > Impostazioni > Fatturazione
|
362
|
+
Elettronica Italiana, spuntare l'opzione se si vuole attivare la
|
363
|
+
funzionalità per i dati dei nodi:
|
364
|
+
|
365
|
+
- ``<CessionarioCommittente>``
|
366
|
+
- ``<CedentePrestatore>``
|
367
|
+
- ``<RappresentanteFiscale>``
|
368
|
+
|
369
|
+
Non sono necessarie altre configurazioni specifiche per
|
370
|
+
l10n_it_edi_extension: una volta installato, le sue funzionalità sono
|
371
|
+
attive e si integrano automaticamente nell'interfaccia esistente.
|
372
|
+
|
373
|
+
Tuttavia, è fondamentale capire che questo modulo è un'estensione e si
|
374
|
+
basa su altri moduli preesistenti e sulla configurazione generale di
|
375
|
+
Odoo per la localizzazione italiana e la fatturazione elettronica.
|
376
|
+
Quindi, affinché le funzionalità di questo modulo siano utilizzabili, è
|
377
|
+
necessario che siano installati e configurati i moduli dipendenti:
|
378
|
+
|
379
|
+
- ``account``: Il modulo base della contabilità di Odoo deve essere
|
380
|
+
installato e configurato (piano dei conti, tasse, giornali contabili,
|
381
|
+
ecc.).
|
382
|
+
- ``l10n_it_edi``: Il modulo principale per la fatturazione elettronica
|
383
|
+
italiana deve essere installato e correttamente configurato. Questo
|
384
|
+
include:
|
385
|
+
|
386
|
+
- Configurazione dei dati aziendali (partita IVA, codice fiscale,
|
387
|
+
regime fiscale, ecc.).
|
388
|
+
- Configurazione dei registri contabili per l'emissione delle fatture
|
389
|
+
elettroniche (indicando il formato FatturaPA/Elettronica).
|
390
|
+
- Configurazione delle sequenze dedicate per la numerazione delle
|
391
|
+
fatture elettroniche.
|
392
|
+
- Eventuale configurazione delle credenziali SDI se si utilizza
|
393
|
+
l'invio diretto tramite Odoo (se supportato dalla configurazione
|
394
|
+
generale).
|
395
|
+
|
396
|
+
Nel partner è possibile abilitare il campo "Non aggiornare il contatto
|
397
|
+
dai dettagli della fattura elettronica" così i dati del partner non
|
398
|
+
saranno modificati in base a quanto presente in una delle loro fatture
|
399
|
+
durante l'importazione.
|
400
|
+
|
401
|
+
**English**
|
402
|
+
|
403
|
+
The only available configurations are:
|
404
|
+
|
405
|
+
- E-invoice import detail level: in Invoicing (or Accounting for EE) >
|
406
|
+
Configuration > Settings > Italian Electronic Invoicing, set
|
407
|
+
"E-invoice import detail level" to import electronic invoices without
|
408
|
+
lines, with one line per tax rate, or with all lines (default). This
|
409
|
+
configuration can be overridden by the "E-invoice import detail level"
|
410
|
+
field in each supplier.
|
411
|
+
- Create partner if not existing during import: in Invoicing (or
|
412
|
+
Accounting for EE) > Configuration > Settings > Italian Electronic
|
413
|
+
Invoicing, check this option if you want to enable the functionality
|
414
|
+
for the following node data:
|
415
|
+
|
416
|
+
- ``<CessionarioCommittente>``
|
417
|
+
- ``<CedentePrestatore>``
|
418
|
+
- ``<RappresentanteFiscale>``
|
419
|
+
|
420
|
+
No other specific configurations are required for l10n_it_edi_extension:
|
421
|
+
once installed, its features are active and automatically integrate into
|
422
|
+
the existing interface.
|
423
|
+
|
424
|
+
However, it's essential to understand that this module is an extension
|
425
|
+
and relies on other pre-existing modules and Odoo's general
|
426
|
+
configuration for Italian localization and electronic invoicing.
|
427
|
+
Therefore, for this module's features to be usable, the dependent
|
428
|
+
modules must be installed and configured:
|
429
|
+
|
430
|
+
- ``account``: Odoo's basic accounting module must be installed and
|
431
|
+
configured (chart of accounts, taxes, journals, etc.).
|
432
|
+
- ``l10n_it_edi``: The main module for Italian electronic invoicing must
|
433
|
+
be installed and properly configured. This includes:
|
434
|
+
|
435
|
+
- Company data configuration (VAT number, fiscal code, tax regime,
|
436
|
+
etc.).
|
437
|
+
- Configuration of accounting journals for issuing electronic invoices
|
438
|
+
(indicating FatturaPA/Electronic format).
|
439
|
+
- Configuration of dedicated sequences for electronic invoice
|
440
|
+
numbering.
|
441
|
+
- Optional SDI credentials configuration if direct sending through
|
442
|
+
Odoo is used (if supported by general configuration).
|
443
|
+
|
444
|
+
In the partner, you can enable "Do not update the contact from
|
445
|
+
Electronic Invoice Details" so that the partner's data are not modified
|
446
|
+
with what is found in one of their imported e-bill.
|
447
|
+
|
448
|
+
Bug Tracker
|
449
|
+
===========
|
450
|
+
|
451
|
+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-italy/issues>`_.
|
452
|
+
In case of trouble, please check there if your issue has already been reported.
|
453
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
454
|
+
`feedback <https://github.com/OCA/l10n-italy/issues/new?body=module:%20l10n_it_edi_extension%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
455
|
+
|
456
|
+
Do not contact contributors directly about support or help with technical issues.
|
457
|
+
|
458
|
+
Credits
|
459
|
+
=======
|
460
|
+
|
461
|
+
Authors
|
462
|
+
-------
|
463
|
+
|
464
|
+
* Giuseppe Borruso
|
465
|
+
|
466
|
+
Contributors
|
467
|
+
------------
|
468
|
+
|
469
|
+
- Giuseppe Borruso - Dinamiche Aziendali srl
|
470
|
+
<gborruso@dinamicheaziendali.it>
|
471
|
+
- `Aion Tech <https://aiontech.company/>`__:
|
472
|
+
|
473
|
+
- Simone Rubino <simone.rubino@aion-tech.it>
|
474
|
+
|
475
|
+
- Simone Rubino <simone.rubino88@gmail.com>
|
476
|
+
- Nextev Srl <odoo@nextev.it>
|
477
|
+
|
478
|
+
Maintainers
|
479
|
+
-----------
|
480
|
+
|
481
|
+
This module is maintained by the OCA.
|
482
|
+
|
483
|
+
.. image:: https://odoo-community.org/logo.png
|
484
|
+
:alt: Odoo Community Association
|
485
|
+
:target: https://odoo-community.org
|
486
|
+
|
487
|
+
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
488
|
+
mission is to support the collaborative development of Odoo features and
|
489
|
+
promote its widespread use.
|
490
|
+
|
491
|
+
This module is part of the `OCA/l10n-italy <https://github.com/OCA/l10n-italy/tree/18.0/l10n_it_edi_extension>`_ project on GitHub.
|
492
|
+
|
493
|
+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|