odoo-addon-l10n-it-fatturapa-out 16.0.1.1.0.3__py3-none-any.whl → 16.0.1.1.1__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_fatturapa_out/README.rst +1 -1
- odoo/addons/l10n_it_fatturapa_out/__manifest__.py +1 -1
- odoo/addons/l10n_it_fatturapa_out/data/invoice_it_template.xml +324 -300
- odoo/addons/l10n_it_fatturapa_out/i18n/l10n_it_fatturapa_out.pot +0 -40
- odoo/addons/l10n_it_fatturapa_out/static/description/index.html +1 -1
- {odoo_addon_l10n_it_fatturapa_out-16.0.1.1.0.3.dist-info → odoo_addon_l10n_it_fatturapa_out-16.0.1.1.1.dist-info}/METADATA +2 -2
- {odoo_addon_l10n_it_fatturapa_out-16.0.1.1.0.3.dist-info → odoo_addon_l10n_it_fatturapa_out-16.0.1.1.1.dist-info}/RECORD +9 -9
- {odoo_addon_l10n_it_fatturapa_out-16.0.1.1.0.3.dist-info → odoo_addon_l10n_it_fatturapa_out-16.0.1.1.1.dist-info}/WHEEL +0 -0
- {odoo_addon_l10n_it_fatturapa_out-16.0.1.1.0.3.dist-info → odoo_addon_l10n_it_fatturapa_out-16.0.1.1.1.dist-info}/top_level.txt +0 -0
@@ -7,7 +7,7 @@ ITA - Fattura elettronica - Emissione
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
8
8
|
!! changes will be overwritten. !!
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
10
|
-
!! source digest: sha256:
|
10
|
+
!! source digest: sha256:daf4cf9840f14d753e15431c9154a58267b936d6751968a5f199e473e55a633f
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
12
12
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -14,6 +14,7 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
14
14
|
<template id="account_invoice_it_dati_trasporto"><t /></template>
|
15
15
|
|
16
16
|
<template id="account_invoice_it_dati_documento_correlato">
|
17
|
+
<t t-translation="off">
|
17
18
|
<RiferimentoNumeroLinea t-if="doc.lineRef" t-out="doc.lineRef" />
|
18
19
|
<IdDocumento t-if="doc.name" t-out="doc.name" />
|
19
20
|
<Data t-if="doc.date" t-out="doc.date" />
|
@@ -21,8 +22,10 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
21
22
|
<CodiceCommessaConvenzione t-if="doc.code" t-out="doc.code" />
|
22
23
|
<CodiceCUP t-if="doc.cup" t-out="doc.cup" />
|
23
24
|
<CodiceCIG t-if="doc.cig" t-out="doc.cig" />
|
25
|
+
</t>
|
24
26
|
</template>
|
25
27
|
<template id="account_invoice_it_dati_documenti_correlati">
|
28
|
+
<t t-translation="off">
|
26
29
|
<t t-set="related_orders" t-value="record.related_documents.browse()" />
|
27
30
|
<t t-set="related_contracts" t-value="record.related_documents.browse()" />
|
28
31
|
<t t-set="related_agreements" t-value="record.related_documents.browse()" />
|
@@ -30,94 +33,96 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
30
33
|
<t t-set="related_invoices" t-value="record.related_documents.browse()" />
|
31
34
|
<t t-set="line_counter" t-value="0" />
|
32
35
|
<t
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
+
t-foreach="record.invoice_line_ids.sorted(key=lambda l: (-l.sequence, l.date, l.move_name, -l.id), reverse=True)"
|
37
|
+
t-as="line"
|
38
|
+
>
|
36
39
|
<t t-set="line_counter" t-value="line_counter + 1" />
|
37
40
|
<t
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
+
t-foreach="line.related_documents.filtered(lambda doc: doc.type == 'order')"
|
42
|
+
t-as="doc"
|
43
|
+
>
|
41
44
|
<t t-set="doc_lineRef" t-value="doc.setlineRef(line_counter)" />
|
42
45
|
<t t-set="related_orders" t-value="related_orders + doc" />
|
43
46
|
</t>
|
44
47
|
<t
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
+
t-foreach="line.related_documents.filtered(lambda doc: doc.type == 'contract')"
|
49
|
+
t-as="doc"
|
50
|
+
>
|
48
51
|
<t t-set="doc_lineRef" t-value="doc.setlineRef(line_counter)" />
|
49
52
|
<t t-set="related_contracts" t-value="related_contracts + doc" />
|
50
53
|
</t>
|
51
54
|
<t
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
+
t-foreach="line.related_documents.filtered(lambda doc: doc.type == 'agreement')"
|
56
|
+
t-as="doc"
|
57
|
+
>
|
55
58
|
<t t-set="doc_lineRef" t-value="doc.setlineRef(line_counter)" />
|
56
59
|
<t t-set="related_agreements" t-value="related_agreements + doc" />
|
57
60
|
</t>
|
58
61
|
<t
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
+
t-foreach="line.related_documents.filtered(lambda doc: doc.type == 'reception')"
|
63
|
+
t-as="doc"
|
64
|
+
>
|
62
65
|
<t t-set="doc_lineRef" t-value="doc.setlineRef(line_counter)" />
|
63
66
|
<t t-set="related_receptions" t-value="related_receptions + doc" />
|
64
67
|
</t>
|
65
68
|
<t
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
+
t-foreach="line.related_documents.filtered(lambda doc: doc.type == 'invoice')"
|
70
|
+
t-as="doc"
|
71
|
+
>
|
69
72
|
<t t-set="doc_lineRef" t-value="doc.setlineRef(line_counter)" />
|
70
73
|
<t t-set="related_invoices" t-value="related_invoices + doc" />
|
71
74
|
</t>
|
72
75
|
</t>
|
73
76
|
<t
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
+
t-set="related_orders"
|
78
|
+
t-value="related_orders + record.related_documents.filtered(lambda doc: doc.type == 'order')"
|
79
|
+
/>
|
77
80
|
<t
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
+
t-set="related_contracts"
|
82
|
+
t-value="related_contracts + record.related_documents.filtered(lambda doc: doc.type == 'contract')"
|
83
|
+
/>
|
81
84
|
<t
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
+
t-set="related_agreements"
|
86
|
+
t-value="related_agreements + record.related_documents.filtered(lambda doc: doc.type == 'agreement')"
|
87
|
+
/>
|
85
88
|
<t
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
+
t-set="related_receptions"
|
90
|
+
t-value="related_receptions + record.related_documents.filtered(lambda doc: doc.type == 'reception')"
|
91
|
+
/>
|
89
92
|
<t
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
+
t-set="related_invoices"
|
94
|
+
t-value="related_invoices + record.related_documents.filtered(lambda doc: doc.type == 'invoice')"
|
95
|
+
/>
|
93
96
|
<DatiOrdineAcquisto t-foreach="related_orders" t-as="doc">
|
94
97
|
<t
|
95
|
-
|
96
|
-
|
98
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_dati_documento_correlato"
|
99
|
+
/>
|
97
100
|
</DatiOrdineAcquisto>
|
98
101
|
<DatiContratto t-foreach="related_contracts" t-as="doc">
|
99
102
|
<t
|
100
|
-
|
101
|
-
|
103
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_dati_documento_correlato"
|
104
|
+
/>
|
102
105
|
</DatiContratto>
|
103
106
|
<DatiConvenzione t-foreach="related_agreements" t-as="doc">
|
104
107
|
<t
|
105
|
-
|
106
|
-
|
108
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_dati_documento_correlato"
|
109
|
+
/>
|
107
110
|
</DatiConvenzione>
|
108
111
|
<DatiRicezione t-foreach="related_receptions" t-as="doc">
|
109
112
|
<t
|
110
|
-
|
111
|
-
|
113
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_dati_documento_correlato"
|
114
|
+
/>
|
112
115
|
</DatiRicezione>
|
113
116
|
<DatiFattureCollegate t-foreach="related_invoices" t-as="doc">
|
114
117
|
<t
|
115
|
-
|
116
|
-
|
118
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_dati_documento_correlato"
|
119
|
+
/>
|
117
120
|
</DatiFattureCollegate>
|
121
|
+
</t>
|
118
122
|
</template>
|
119
123
|
|
120
124
|
<template id="account_invoice_line_it_sconto_maggiorazione">
|
125
|
+
<t t-translation="off">
|
121
126
|
<t t-set="importo" t-value="get_importo(line)" />
|
122
127
|
<ScontoMaggiorazione t-if="line.discount != 0 or importo != 0">
|
123
128
|
<!-- [2.2.1.10] -->
|
@@ -132,13 +137,15 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
132
137
|
<Percentuale t-out="format_numbers_two(abs(line.discount))" />
|
133
138
|
</t>
|
134
139
|
</ScontoMaggiorazione>
|
140
|
+
</t>
|
135
141
|
</template>
|
136
142
|
|
137
143
|
<template id="account_invoice_line_it_FatturaPA">
|
144
|
+
<t t-translation="off">
|
138
145
|
<t
|
139
|
-
|
140
|
-
|
141
|
-
|
146
|
+
t-set="line_is_section_note"
|
147
|
+
t-value="line.display_type in ('line_section', 'line_note')"
|
148
|
+
/>
|
142
149
|
<t t-set="tax_ids" t-value="line.tax_ids and line.tax_ids[0]" />
|
143
150
|
<DettaglioLinee>
|
144
151
|
<NumeroLinea t-out="line_counter" />
|
@@ -150,171 +157,177 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
150
157
|
</CodiceArticolo>
|
151
158
|
<CodiceArticolo t-if="line.product_id.default_code">
|
152
159
|
<CodiceTipo
|
153
|
-
|
154
|
-
|
160
|
+
t-out="env['ir.config_parameter'].sudo().get_param('fatturapa.codicetipo.odoo', 'ODOO')"
|
161
|
+
/>
|
155
162
|
<CodiceValore t-out="line.product_id.default_code[:35]" />
|
156
163
|
</CodiceArticolo>
|
157
164
|
<Descrizione><t
|
158
|
-
|
159
|
-
|
160
|
-
|
165
|
+
t-if="line.name"
|
166
|
+
t-out="encode_for_export(line.name, 1000)"
|
167
|
+
/><t t-if="not line.name" t-out="'NO NAME'" /></Descrizione>
|
161
168
|
<Quantita t-out="format_quantity(line)" />
|
162
169
|
<UnitaMisura
|
163
|
-
|
164
|
-
|
165
|
-
|
170
|
+
t-if="line.product_uom_id.name"
|
171
|
+
t-out="unidecode(line.product_uom_id.name)"
|
172
|
+
/>
|
166
173
|
<!-- <DataInizioPeriodo t-out=""/>-->
|
167
174
|
<!-- <DataFinePeriodo t-out=""/>-->
|
168
175
|
<PrezzoUnitario t-out="format_price(line)" />
|
169
176
|
<t
|
170
|
-
|
171
|
-
|
177
|
+
t-call="l10n_it_fatturapa_out.account_invoice_line_it_sconto_maggiorazione"
|
178
|
+
/>
|
172
179
|
<PrezzoTotale
|
173
|
-
|
174
|
-
|
180
|
+
t-out="format_monetary(fpa_to_eur(line.price_subtotal, record, line.currency_rate), euro)"
|
181
|
+
/>
|
175
182
|
<AliquotaIVA
|
176
|
-
|
177
|
-
|
178
|
-
|
183
|
+
t-if="not line_is_section_note"
|
184
|
+
t-out="format_numbers(tax_ids.amount)"
|
185
|
+
/>
|
179
186
|
<!-- Common best practice for note/section lines is to reference an existing tax line.
|
180
187
|
The price for note/section lines is zero anyway. The original tax is ignored as
|
181
188
|
it defaults to the company default tax which may or may not be present in
|
182
189
|
the invoice.-->
|
183
190
|
<t
|
184
|
-
|
185
|
-
|
186
|
-
|
191
|
+
t-set="existing_tax_line"
|
192
|
+
t-value="list(all_taxes[line.move_id.id].values())[0]"
|
193
|
+
/>
|
187
194
|
<AliquotaIVA
|
188
|
-
|
189
|
-
|
190
|
-
|
195
|
+
t-if="line_is_section_note"
|
196
|
+
t-out="existing_tax_line['AliquotaIVA']"
|
197
|
+
/>
|
191
198
|
<t t-call="l10n_it_fatturapa_out.account_invoice_line_ritenuta" />
|
192
199
|
<Natura
|
193
|
-
|
194
|
-
|
195
|
-
|
200
|
+
t-if="not line_is_section_note and tax_ids.kind_id.code"
|
201
|
+
t-out="tax_ids.kind_id.code"
|
202
|
+
/>
|
196
203
|
<Natura
|
197
|
-
|
198
|
-
|
199
|
-
|
204
|
+
t-if="line_is_section_note and existing_tax_line.get('Natura')"
|
205
|
+
t-out="existing_tax_line['Natura']"
|
206
|
+
/>
|
200
207
|
<RiferimentoAmministrazione
|
201
|
-
|
202
|
-
|
203
|
-
|
208
|
+
t-if="line.admin_ref"
|
209
|
+
t-out="line.admin_ref"
|
210
|
+
/>
|
204
211
|
<AltriDatiGestionali
|
205
|
-
|
206
|
-
|
212
|
+
t-if="tax_ids.kind_id.code == 'N2.1' and in_eu(line.move_id.partner_id)"
|
213
|
+
>
|
207
214
|
<TipoDato>INVCONT</TipoDato>
|
208
215
|
</AltriDatiGestionali>
|
209
216
|
<AltriDatiGestionali
|
210
|
-
|
211
|
-
|
217
|
+
t-if="not line_is_section_note and line.currency_id != euro"
|
218
|
+
>
|
212
219
|
<TipoDato>Valuta</TipoDato>
|
213
220
|
<RiferimentoTesto t-out="line.currency_id.name" />
|
214
221
|
<RiferimentoNumero
|
215
|
-
|
216
|
-
|
222
|
+
t-out="format_price(line, original_currency=True)"
|
223
|
+
/>
|
217
224
|
<RiferimentoData t-out="format_date(record.date)" />
|
218
225
|
</AltriDatiGestionali>
|
219
226
|
</DettaglioLinee>
|
227
|
+
</t>
|
220
228
|
</template>
|
221
229
|
|
222
230
|
<template id="account_invoice_it_FatturaPA_sede">
|
231
|
+
<t t-translation="off">
|
223
232
|
<t t-set="indirizzo"><t
|
224
|
-
|
225
|
-
|
226
|
-
|
233
|
+
t-if="partner_id.street2"
|
234
|
+
t-out="partner_id.street + '\n' + partner_id.street2"
|
235
|
+
/><t t-if="not partner_id.street2" t-out="partner_id.street" /></t>
|
227
236
|
<Indirizzo t-out="encode_for_export(indirizzo, 60)" />
|
228
237
|
<!-- <NumeroCivico t-out=""/>-->
|
229
238
|
<!-- XXX da controllare, if vecchio codice fa diversamente
|
230
239
|
<CAP><t t-if="partner_id.country_id.code == 'IT'" t-out="partner_id.zip" /><t t-if="partner_id.country_id.code != 'IT'" t-out="'00000'" /></CAP>
|
231
240
|
-->
|
232
241
|
<CAP
|
233
|
-
|
234
|
-
|
235
|
-
|
242
|
+
t-if="partner_id.codice_destinatario == 'XXXXXXX' or not partner_id.zip"
|
243
|
+
t-out="'00000'"
|
244
|
+
/>
|
236
245
|
<CAP
|
237
|
-
|
238
|
-
|
239
|
-
|
246
|
+
t-if="partner_id.codice_destinatario != 'XXXXXXX' and partner_id.zip"
|
247
|
+
t-out="partner_id.zip"
|
248
|
+
/>
|
240
249
|
<Comune t-out="encode_for_export(partner_id.city, 60)" />
|
241
250
|
<Provincia
|
242
|
-
|
243
|
-
|
244
|
-
|
251
|
+
t-if="partner_id.country_id.code == 'IT'"
|
252
|
+
t-out="partner_id.state_id.code"
|
253
|
+
/>
|
245
254
|
<Provincia
|
246
|
-
|
247
|
-
|
248
|
-
|
255
|
+
t-if="partner_id.codice_destinatario == 'XXXXXXX'"
|
256
|
+
t-out="'EE'"
|
257
|
+
/>
|
249
258
|
<Nazione t-out="partner_id.country_id.code" />
|
259
|
+
</t>
|
250
260
|
</template>
|
251
261
|
<template id="account_invoice_it_dati_trasmissione">
|
262
|
+
<t t-translation="off">
|
252
263
|
<t t-set="transmitter" t-value="company_id.e_invoice_transmitter_id" />
|
253
264
|
<DatiTrasmissione>
|
254
265
|
<IdTrasmittente>
|
255
266
|
<t
|
256
|
-
|
257
|
-
|
258
|
-
|
267
|
+
t-set="id_fiscale_iva"
|
268
|
+
t-value="get_id_fiscale_iva(transmitter, prefer_fiscalcode=True)"
|
269
|
+
/>
|
259
270
|
<IdPaese t-out="id_fiscale_iva['id_paese']" />
|
260
271
|
<IdCodice t-out="id_fiscale_iva['id_codice']" />
|
261
272
|
</IdTrasmittente>
|
262
273
|
<ProgressivoInvio t-out="progressivo_invio" />
|
263
274
|
<FormatoTrasmissione t-out="formato_trasmissione" />
|
264
275
|
<CodiceDestinatario
|
265
|
-
|
266
|
-
|
267
|
-
|
276
|
+
t-if="codice_destinatario"
|
277
|
+
t-out="codice_destinatario"
|
278
|
+
/>
|
268
279
|
<ContattiTrasmittente>
|
269
280
|
<Telefono
|
270
|
-
|
271
|
-
|
272
|
-
|
281
|
+
t-if="format_phone(transmitter.phone)"
|
282
|
+
t-out="format_phone(transmitter.phone)"
|
283
|
+
/>
|
273
284
|
<Telefono
|
274
|
-
|
275
|
-
|
276
|
-
|
285
|
+
t-if="not format_phone(transmitter.phone) and format_phone(transmitter.mobile)"
|
286
|
+
t-out="format_phone(transmitter.mobile)"
|
287
|
+
/>
|
277
288
|
<Email t-if="transmitter.email" t-out="transmitter.email" />
|
278
289
|
</ContattiTrasmittente>
|
279
290
|
<PECDestinatario
|
280
|
-
|
281
|
-
|
282
|
-
|
291
|
+
t-if="codice_destinatario == '0000000' and partner_id.pec_destinatario"
|
292
|
+
t-out="partner_id.pec_destinatario"
|
293
|
+
/>
|
283
294
|
</DatiTrasmissione>
|
295
|
+
</t>
|
284
296
|
</template>
|
285
297
|
<template id="account_invoice_it_cedente_prestatore">
|
298
|
+
<t t-translation="off">
|
286
299
|
<CedentePrestatore>
|
287
300
|
<DatiAnagrafici>
|
288
301
|
<t
|
289
|
-
|
290
|
-
|
291
|
-
|
302
|
+
t-set="id_fiscale_iva"
|
303
|
+
t-value="get_id_fiscale_iva(partner_id)"
|
304
|
+
/>
|
292
305
|
<IdFiscaleIVA>
|
293
306
|
<IdPaese t-out="id_fiscale_iva['id_paese']" />
|
294
307
|
<IdCodice t-out="id_fiscale_iva['id_codice']" />
|
295
308
|
</IdFiscaleIVA>
|
296
309
|
<CodiceFiscale
|
297
|
-
|
298
|
-
|
299
|
-
|
310
|
+
t-if="partner_id.fiscalcode"
|
311
|
+
t-out="partner_id.fiscalcode"
|
312
|
+
/>
|
300
313
|
<Anagrafica>
|
301
314
|
<Denominazione
|
302
|
-
|
303
|
-
|
304
|
-
|
315
|
+
t-if="partner_id.is_company"
|
316
|
+
t-out="partner_id.display_name"
|
317
|
+
/>
|
305
318
|
<Nome
|
306
|
-
|
307
|
-
|
308
|
-
|
319
|
+
t-if="not partner_id.is_company"
|
320
|
+
t-out="partner_id.firstname"
|
321
|
+
/>
|
309
322
|
<Cognome
|
310
|
-
|
311
|
-
|
312
|
-
|
323
|
+
t-if="not partner_id.is_company"
|
324
|
+
t-out="partner_id.lastname"
|
325
|
+
/>
|
313
326
|
<!-- <Titolo t-out=""/>-->
|
314
327
|
<CodEORI
|
315
|
-
|
316
|
-
|
317
|
-
|
328
|
+
t-if="partner_id.eori_code"
|
329
|
+
t-out="partner_id.eori_code"
|
330
|
+
/>
|
318
331
|
</Anagrafica>
|
319
332
|
<!-- <AlboProfessionale t-out=""/>-->
|
320
333
|
<!-- <ProvinciaAlbo t-out=""/>-->
|
@@ -326,126 +339,130 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
326
339
|
</DatiAnagrafici>
|
327
340
|
<Sede>
|
328
341
|
<t
|
329
|
-
|
330
|
-
|
342
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_FatturaPA_sede"
|
343
|
+
/>
|
331
344
|
</Sede>
|
332
345
|
<StabileOrganizzazione
|
333
|
-
|
334
|
-
|
346
|
+
t-if="company_id and company_id.fatturapa_stabile_organizzazione"
|
347
|
+
>
|
335
348
|
<t t-call="l10n_it_fatturapa_out.account_invoice_it_FatturaPA_sede">
|
336
349
|
<t
|
337
|
-
|
338
|
-
|
339
|
-
|
350
|
+
t-set="partner_id"
|
351
|
+
t-value="company_id.fatturapa_stabile_organizzazione"
|
352
|
+
/>
|
340
353
|
</t>
|
341
354
|
</StabileOrganizzazione>
|
342
355
|
<IscrizioneREA
|
343
|
-
|
344
|
-
|
356
|
+
t-if="company_id and company_id.rea_office and company_id.rea_code and company_id.rea_liquidation_state"
|
357
|
+
>
|
345
358
|
<!--1.2.4-->
|
346
359
|
<Ufficio
|
347
|
-
|
348
|
-
|
349
|
-
|
360
|
+
t-if="company_id.rea_office.code"
|
361
|
+
t-out="company_id.rea_office.code"
|
362
|
+
/>
|
350
363
|
<NumeroREA t-out="company_id.rea_code" />
|
351
364
|
<CapitaleSociale
|
352
|
-
|
353
|
-
|
354
|
-
|
365
|
+
t-if="company_id.rea_capital"
|
366
|
+
t-out="format_numbers_two(company_id.rea_capital)"
|
367
|
+
/>
|
355
368
|
<SocioUnico
|
356
|
-
|
357
|
-
|
358
|
-
|
369
|
+
t-if="company_id.rea_member_type"
|
370
|
+
t-out="company_id.rea_member_type"
|
371
|
+
/>
|
359
372
|
<StatoLiquidazione t-out="company_id.rea_liquidation_state" />
|
360
373
|
</IscrizioneREA>
|
361
374
|
<Contatti t-if="company_id">
|
362
375
|
<Telefono
|
363
|
-
|
364
|
-
|
365
|
-
|
376
|
+
t-if="format_phone(company_id.partner_id.phone)"
|
377
|
+
t-out="format_phone(company_id.partner_id.phone)"
|
378
|
+
/>
|
366
379
|
<Telefono
|
367
|
-
|
368
|
-
|
369
|
-
|
380
|
+
t-if="not format_phone(company_id.partner_id.phone) and format_phone(company_id.partner_id.mobile)"
|
381
|
+
t-out="format_phone(company_id.partner_id.mobile)"
|
382
|
+
/>
|
370
383
|
<Email t-if="company_id.email" t-out="company_id.email" />
|
371
384
|
</Contatti>
|
372
385
|
<RiferimentoAmministrazione
|
373
|
-
|
374
|
-
|
375
|
-
|
386
|
+
t-if="company_id and company_id.fatturapa_pub_administration_ref"
|
387
|
+
t-out="company_id.fatturapa_pub_administration_ref"
|
388
|
+
/>
|
376
389
|
</CedentePrestatore>
|
390
|
+
</t>
|
377
391
|
</template>
|
378
392
|
<template id="account_invoice_it_rappresentante_fiscale">
|
393
|
+
<t t-translation="off">
|
379
394
|
<RappresentanteFiscale t-if="company_id.fatturapa_tax_representative">
|
380
395
|
<!--1.3-->
|
381
396
|
<DatiAnagrafici>
|
382
397
|
<t
|
383
|
-
|
384
|
-
|
385
|
-
|
398
|
+
t-set="id_fiscale_iva"
|
399
|
+
t-value="get_id_fiscale_iva(company_id.fatturapa_tax_representative)"
|
400
|
+
/>
|
386
401
|
<IdFiscaleIVA>
|
387
402
|
<IdPaese t-out="id_fiscale_iva['id_paese']" />
|
388
403
|
<IdCodice t-out="id_fiscale_iva['id_codice']" />
|
389
404
|
</IdFiscaleIVA>
|
390
405
|
<CodiceFiscale
|
391
|
-
|
392
|
-
|
393
|
-
|
406
|
+
t-if="company_id.fatturapa_tax_representative.fiscalcode"
|
407
|
+
t-out="company_id.fatturapa_tax_representative.fiscalcode"
|
408
|
+
/>
|
394
409
|
<Anagrafica>
|
395
410
|
<Denominazione
|
396
|
-
|
397
|
-
|
398
|
-
|
411
|
+
t-if="company_id.fatturapa_tax_representative.is_company"
|
412
|
+
t-out="company_id.fatturapa_tax_representative.display_name"
|
413
|
+
/>
|
399
414
|
<Nome
|
400
|
-
|
401
|
-
|
402
|
-
|
415
|
+
t-if="not company_id.fatturapa_tax_representative.is_company"
|
416
|
+
t-out="company_id.fatturapa_tax_representative.firstname"
|
417
|
+
/>
|
403
418
|
<Cognome
|
404
|
-
|
405
|
-
|
406
|
-
|
419
|
+
t-if="not company_id.fatturapa_tax_representative.is_company"
|
420
|
+
t-out="company_id.fatturapa_tax_representative.lastname"
|
421
|
+
/>
|
407
422
|
<!-- <Titolo t-out=""/>-->
|
408
423
|
<CodEORI
|
409
|
-
|
410
|
-
|
411
|
-
|
424
|
+
t-if="company_id.fatturapa_tax_representative.eori_code"
|
425
|
+
t-out="company_id.fatturapa_tax_representative.eori_code"
|
426
|
+
/>
|
412
427
|
</Anagrafica>
|
413
428
|
</DatiAnagrafici>
|
414
429
|
</RappresentanteFiscale>
|
430
|
+
</t>
|
415
431
|
</template>
|
416
432
|
<template id="account_invoice_it_cessionario_committente">
|
433
|
+
<t t-translation="off">
|
417
434
|
<CessionarioCommittente>
|
418
435
|
<DatiAnagrafici>
|
419
436
|
<t
|
420
|
-
|
421
|
-
|
422
|
-
|
437
|
+
t-set="id_fiscale_iva"
|
438
|
+
t-value="get_id_fiscale_iva(partner_id.commercial_partner_id)"
|
439
|
+
/>
|
423
440
|
<IdFiscaleIVA t-if="id_fiscale_iva['id_codice']">
|
424
441
|
<IdPaese t-out="id_fiscale_iva['id_paese']" />
|
425
442
|
<IdCodice t-out="id_fiscale_iva['id_codice']" />
|
426
443
|
</IdFiscaleIVA>
|
427
444
|
<CodiceFiscale
|
428
|
-
|
429
|
-
|
430
|
-
|
445
|
+
t-if="partner_id.commercial_partner_id.fiscalcode"
|
446
|
+
t-out="partner_id.commercial_partner_id.fiscalcode"
|
447
|
+
/>
|
431
448
|
<Anagrafica>
|
432
449
|
<Denominazione
|
433
|
-
|
434
|
-
|
435
|
-
|
450
|
+
t-if="partner_id.commercial_partner_id.is_company"
|
451
|
+
t-out="encode_for_export(partner_id.commercial_partner_id.display_name, 80)"
|
452
|
+
/>
|
436
453
|
<Nome
|
437
|
-
|
438
|
-
|
439
|
-
|
454
|
+
t-if="not partner_id.commercial_partner_id.is_company"
|
455
|
+
t-out="encode_for_export(partner_id.commercial_partner_id.firstname, 60)"
|
456
|
+
/>
|
440
457
|
<Cognome
|
441
|
-
|
442
|
-
|
443
|
-
|
458
|
+
t-if="not partner_id.commercial_partner_id.is_company"
|
459
|
+
t-out="encode_for_export(partner_id.commercial_partner_id.lastname, 60)"
|
460
|
+
/>
|
444
461
|
<!-- <Titolo t-out=""/>-->
|
445
462
|
<CodEORI
|
446
|
-
|
447
|
-
|
448
|
-
|
463
|
+
t-if="partner_id.commercial_partner_id.eori_code"
|
464
|
+
t-out="partner_id.commercial_partner_id.eori_code"
|
465
|
+
/>
|
449
466
|
</Anagrafica>
|
450
467
|
</DatiAnagrafici>
|
451
468
|
<Sede>
|
@@ -454,52 +471,56 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
454
471
|
</t>
|
455
472
|
</Sede>
|
456
473
|
</CessionarioCommittente>
|
474
|
+
</t>
|
457
475
|
</template>
|
458
476
|
<template id="account_invoice_it_terzo_intermediario_soggetto_emittente">
|
477
|
+
<t t-translation="off">
|
459
478
|
<TerzoIntermediarioOSoggettoEmittente
|
460
|
-
|
461
|
-
|
479
|
+
t-if="company_id.fatturapa_sender_partner"
|
480
|
+
>
|
462
481
|
<DatiAnagrafici>
|
463
482
|
<t
|
464
|
-
|
465
|
-
|
466
|
-
|
483
|
+
t-set="id_fiscale_iva"
|
484
|
+
t-value="get_id_fiscale_iva(company_id.fatturapa_sender_partner)"
|
485
|
+
/>
|
467
486
|
<IdFiscaleIVA>
|
468
487
|
<IdPaese t-out="id_fiscale_iva['id_paese']" />
|
469
488
|
<IdCodice t-out="id_fiscale_iva['id_codice']" />
|
470
489
|
</IdFiscaleIVA>
|
471
490
|
<CodiceFiscale
|
472
|
-
|
473
|
-
|
474
|
-
|
491
|
+
t-if="company_id.fatturapa_sender_partner.fiscalcode"
|
492
|
+
t-out="company_id.fatturapa_sender_partner.fiscalcode"
|
493
|
+
/>
|
475
494
|
<Anagrafica>
|
476
495
|
<Denominazione
|
477
|
-
|
478
|
-
|
479
|
-
|
496
|
+
t-if="company_id.fatturapa_sender_partner.is_company"
|
497
|
+
t-out="company_id.fatturapa_sender_partner.display_name"
|
498
|
+
/>
|
480
499
|
<Nome
|
481
|
-
|
482
|
-
|
483
|
-
|
500
|
+
t-if="not company_id.fatturapa_sender_partner.is_company"
|
501
|
+
t-out="company_id.fatturapa_sender_partner.firstname"
|
502
|
+
/>
|
484
503
|
<Cognome
|
485
|
-
|
486
|
-
|
487
|
-
|
504
|
+
t-if="not company_id.fatturapa_sender_partner.is_company"
|
505
|
+
t-out="company_id.fatturapa_sender_partner.lastname"
|
506
|
+
/>
|
488
507
|
<!-- <Titolo t-out=""/>-->
|
489
508
|
<CodEORI
|
490
|
-
|
491
|
-
|
492
|
-
|
509
|
+
t-if="company_id.fatturapa_sender_partner.eori_code"
|
510
|
+
t-out="company_id.fatturapa_sender_partner.eori_code"
|
511
|
+
/>
|
493
512
|
</Anagrafica>
|
494
513
|
</DatiAnagrafici>
|
495
514
|
</TerzoIntermediarioOSoggettoEmittente>
|
515
|
+
</t>
|
496
516
|
</template>
|
497
517
|
|
498
518
|
<template id="account_invoice_it_fattura_elettronica_body">
|
519
|
+
<t t-translation="off">
|
499
520
|
<t
|
500
|
-
|
501
|
-
|
502
|
-
|
521
|
+
t-set="currency"
|
522
|
+
t-value="record.currency_id or record.company_currency_id"
|
523
|
+
/>
|
503
524
|
<t t-set="euro" t-value="env.ref('base.EUR')" />
|
504
525
|
<t t-set="bank" t-value="record.partner_bank_id" />
|
505
526
|
<FatturaElettronicaBody>
|
@@ -508,32 +529,32 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
508
529
|
<!--2.1.1-->
|
509
530
|
<TipoDocumento t-out="record.fiscal_document_type_id.code" />
|
510
531
|
<Divisa
|
511
|
-
|
512
|
-
|
513
|
-
|
532
|
+
t-if="record.company_id.xml_divisa_value == 'keep_orig'"
|
533
|
+
t-out="currency.name"
|
534
|
+
/>
|
514
535
|
<Divisa
|
515
|
-
|
516
|
-
|
517
|
-
|
536
|
+
t-if="not record.company_id.xml_divisa_value == 'keep_orig'"
|
537
|
+
t-out="euro.name"
|
538
|
+
/>
|
518
539
|
<Data t-out="format_date(record.invoice_date)" />
|
519
540
|
<Numero t-out="record.name" />
|
520
541
|
<t
|
521
|
-
|
522
|
-
|
542
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_dati_ritenuta"
|
543
|
+
/>
|
523
544
|
<t
|
524
|
-
|
525
|
-
|
545
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_dati_bollo"
|
546
|
+
/>
|
526
547
|
<t
|
527
|
-
|
528
|
-
|
548
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_dati_cassa_previdenziale"
|
549
|
+
/>
|
529
550
|
<!-- <ScontoMaggiorazione>-->
|
530
551
|
<!-- <Tipo t-out=""/>-->
|
531
552
|
<!-- <Percentuale t-out=""/>-->
|
532
553
|
<!-- <Importo t-out=""/>-->
|
533
554
|
<!-- </ScontoMaggiorazione>-->
|
534
555
|
<ImportoTotaleDocumento
|
535
|
-
|
536
|
-
|
556
|
+
t-out="format_numbers_two(get_importo_totale(record))"
|
557
|
+
/>
|
537
558
|
<!-- <Arrotondamento t-out=""/>-->
|
538
559
|
<t t-foreach="get_causale(record)" t-as="causale">
|
539
560
|
<Causale t-if="causale" t-out="causale" />
|
@@ -541,15 +562,15 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
541
562
|
<Art73 t-if="record.company_id.fatturapa_art73">SI</Art73>
|
542
563
|
</DatiGeneraliDocumento>
|
543
564
|
<t
|
544
|
-
|
545
|
-
|
565
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_dati_documenti_correlati"
|
566
|
+
/>
|
546
567
|
<!-- <DatiSAL>-->
|
547
568
|
<!-- <RiferimentoFase t-out=""/>-->
|
548
569
|
<!-- </DatiSAL>-->
|
549
570
|
<t t-call="l10n_it_fatturapa_out.account_invoice_it_dati_ddt" />
|
550
571
|
<t
|
551
|
-
|
552
|
-
|
572
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_dati_trasporto"
|
573
|
+
/>
|
553
574
|
<!-- <FatturaPrincipale>-->
|
554
575
|
<!-- <NumeroFatturaPrincipale t-out=""/>-->
|
555
576
|
<!-- <DataFatturaPrincipale t-out=""/>-->
|
@@ -559,38 +580,38 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
559
580
|
<!-- Invoice lines. -->
|
560
581
|
<t t-set="line_counter" t-value="0" />
|
561
582
|
<t
|
562
|
-
|
563
|
-
|
564
|
-
|
583
|
+
t-foreach="record.invoice_line_ids.sorted(key=lambda l: (-l.sequence, l.date, l.move_name, -l.id), reverse=True)"
|
584
|
+
t-as="line"
|
585
|
+
>
|
565
586
|
<t t-set="line_counter" t-value="line_counter + 1" />
|
566
587
|
<t
|
567
|
-
|
568
|
-
|
588
|
+
t-call="l10n_it_fatturapa_out.account_invoice_line_it_FatturaPA"
|
589
|
+
/>
|
569
590
|
</t>
|
570
591
|
<t t-foreach="list(all_taxes[record.id].values())" t-as="tax_data">
|
571
592
|
<DatiRiepilogo>
|
572
593
|
<!--2.2.2-->
|
573
594
|
<AliquotaIVA t-out="tax_data['AliquotaIVA']" />
|
574
595
|
<Natura
|
575
|
-
|
576
|
-
|
577
|
-
|
596
|
+
t-if="tax_data.get('Natura', False)"
|
597
|
+
t-out="tax_data['Natura']"
|
598
|
+
/>
|
578
599
|
<!-- <SpeseAccessorie t-out=""/>-->
|
579
600
|
<!-- <Arrotondamento t-out=""/>-->
|
580
601
|
<ImponibileImporto
|
581
|
-
|
582
|
-
|
602
|
+
t-out="format_monetary(tax_data['ImponibileImporto'], euro)"
|
603
|
+
/>
|
583
604
|
<Imposta
|
584
|
-
|
585
|
-
|
605
|
+
t-out="format_monetary(tax_data['Imposta'], euro)"
|
606
|
+
/>
|
586
607
|
<EsigibilitaIVA
|
587
|
-
|
588
|
-
|
589
|
-
|
608
|
+
t-if="tax_data.get('EsigibilitaIVA', False)"
|
609
|
+
t-out="tax_data['EsigibilitaIVA']"
|
610
|
+
/>
|
590
611
|
<RiferimentoNormativo
|
591
|
-
|
592
|
-
|
593
|
-
|
612
|
+
t-if="tax_data.get('RiferimentoNormativo', False)"
|
613
|
+
t-out="encode_for_export(tax_data['RiferimentoNormativo'], 100)"
|
614
|
+
/>
|
594
615
|
</DatiRiepilogo>
|
595
616
|
</t>
|
596
617
|
</DatiBeniServizi>
|
@@ -602,32 +623,32 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
602
623
|
<DatiPagamento t-if="record.invoice_payment_term_id and payments">
|
603
624
|
<!-- <CondizioniPagamento><t t-if="len(payments) == 1">TP02</t><t t-else="">TP01</t></CondizioniPagamento>-->
|
604
625
|
<CondizioniPagamento
|
605
|
-
|
606
|
-
|
626
|
+
t-out="record.invoice_payment_term_id.fatturapa_pt_id.code"
|
627
|
+
/>
|
607
628
|
<t t-foreach="payments" t-as="payment">
|
608
629
|
<DettaglioPagamento>
|
609
630
|
<t
|
610
|
-
|
611
|
-
|
612
|
-
|
631
|
+
t-set="company_bank_account"
|
632
|
+
t-value="record.partner_bank_id"
|
633
|
+
/>
|
613
634
|
<!-- <Beneficiario t-out=""/>-->
|
614
635
|
<ModalitaPagamento
|
615
|
-
|
616
|
-
|
636
|
+
t-out="record.invoice_payment_term_id.fatturapa_pm_id.code"
|
637
|
+
/>
|
617
638
|
<!-- <DataRiferimentoTerminiPagamento t-out=""/>-->
|
618
639
|
<!-- <GiorniTerminiPagamento t-out=""/>-->
|
619
640
|
<DataScadenzaPagamento
|
620
|
-
|
621
|
-
|
622
|
-
|
641
|
+
t-if="payment.date_maturity"
|
642
|
+
t-out="format_date(payment.date_maturity)"
|
643
|
+
/>
|
623
644
|
<ImportoPagamento
|
624
|
-
|
625
|
-
|
626
|
-
|
645
|
+
t-if="record.company_id.xml_divisa_value == 'keep_orig'"
|
646
|
+
t-out="format_numbers_two(payment.amount_currency or payment.debit)"
|
647
|
+
/>
|
627
648
|
<ImportoPagamento
|
628
|
-
|
629
|
-
|
630
|
-
|
649
|
+
t-if="not record.company_id.xml_divisa_value == 'keep_orig'"
|
650
|
+
t-out="format_numbers_two(fpa_to_eur(payment.amount_currency or payment.debit, record, payment.currency_rate))"
|
651
|
+
/>
|
631
652
|
|
632
653
|
<!-- <CodUfficioPostale t-out=""/>-->
|
633
654
|
<!-- <CognomeQuietanzante t-out=""/>-->
|
@@ -635,19 +656,19 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
635
656
|
<!-- <CFQuietanzante t-out=""/>-->
|
636
657
|
<!-- <TitoloQuietanzante t-out=""/>-->
|
637
658
|
<IstitutoFinanziario
|
638
|
-
|
639
|
-
|
640
|
-
|
659
|
+
t-if="company_bank_account.bank_id"
|
660
|
+
t-out="company_bank_account.bank_id.name[:80]"
|
661
|
+
/>
|
641
662
|
<IBAN
|
642
|
-
|
643
|
-
|
644
|
-
|
663
|
+
t-if="company_bank_account.acc_type == 'iban' and company_bank_account.sanitized_acc_number"
|
664
|
+
t-out="company_bank_account.sanitized_acc_number"
|
665
|
+
/>
|
645
666
|
<!-- <ABI t-out=""/>-->
|
646
667
|
<!-- <CAB t-out=""/>-->
|
647
668
|
<BIC
|
648
|
-
|
649
|
-
|
650
|
-
|
669
|
+
t-if="company_bank_account.acc_type == 'bank' and company_bank_account.bank_id.bic"
|
670
|
+
t-out="company_bank_account.bank_id.bic"
|
671
|
+
/>
|
651
672
|
<!-- <ScontoPagamentoAnticipato t-out=""/>-->
|
652
673
|
<!-- <DataLimitePagamentoAnticipato t-out=""/>-->
|
653
674
|
<!-- <PenalitaPagamentiRitardati t-out=""/>-->
|
@@ -657,53 +678,56 @@ e 'line' per riga di fattura (a seconda del livello in cui sono chiamati)
|
|
657
678
|
</t>
|
658
679
|
</DatiPagamento>
|
659
680
|
<Allegati
|
660
|
-
|
661
|
-
|
662
|
-
|
681
|
+
t-foreach="record.fatturapa_doc_attachments.ir_attachment_id"
|
682
|
+
t-as="doc_id"
|
683
|
+
>
|
663
684
|
<NomeAttachment t-out="get_nome_attachment(doc_id)" />
|
664
685
|
<!-- <AlgoritmoCompressione t-out=""/>-->
|
665
686
|
<FormatoAttachment
|
666
|
-
|
667
|
-
|
668
|
-
|
687
|
+
t-if="get_type_attachment(doc_id)"
|
688
|
+
t-out="get_type_attachment(doc_id)"
|
689
|
+
/>
|
669
690
|
<!-- <DescrizioneAttachment t-out=""/>-->
|
670
691
|
<Attachment t-out="doc_id.datas.decode()" />
|
671
692
|
</Allegati>
|
672
693
|
</FatturaElettronicaBody>
|
694
|
+
</t>
|
673
695
|
</template>
|
674
696
|
<template id="account_invoice_it_FatturaPA_export">
|
697
|
+
<t t-translation="off">
|
675
698
|
<ns1:FatturaElettronica
|
676
|
-
|
677
|
-
|
678
|
-
|
699
|
+
xmlns:ns1="http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.2"
|
700
|
+
t-att-versione="formato_trasmissione"
|
701
|
+
>
|
679
702
|
<FatturaElettronicaHeader>
|
680
703
|
<t
|
681
|
-
|
682
|
-
|
704
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_dati_trasmissione"
|
705
|
+
/>
|
683
706
|
<t
|
684
|
-
|
685
|
-
|
707
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_cedente_prestatore"
|
708
|
+
>
|
686
709
|
<t t-set="partner_id" t-value="company_id.partner_id" />
|
687
710
|
</t>
|
688
711
|
<t
|
689
|
-
|
690
|
-
|
712
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_rappresentante_fiscale"
|
713
|
+
/>
|
691
714
|
<t
|
692
|
-
|
693
|
-
|
715
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_cessionario_committente"
|
716
|
+
/>
|
694
717
|
<t
|
695
|
-
|
696
|
-
|
718
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_terzo_intermediario_soggetto_emittente"
|
719
|
+
/>
|
697
720
|
<SoggettoEmittente
|
698
|
-
|
699
|
-
|
721
|
+
t-if="company_id.fatturapa_sender_partner"
|
722
|
+
>TZ</SoggettoEmittente>
|
700
723
|
<!-- <SoggettoEmittente t-if="False" t-out="CC"/>-->
|
701
724
|
</FatturaElettronicaHeader>
|
702
725
|
<t t-foreach="invoices" t-as="record">
|
703
726
|
<t
|
704
|
-
|
705
|
-
|
727
|
+
t-call="l10n_it_fatturapa_out.account_invoice_it_fattura_elettronica_body"
|
728
|
+
/>
|
706
729
|
</t>
|
707
730
|
</ns1:FatturaElettronica>
|
731
|
+
</t>
|
708
732
|
</template>
|
709
733
|
</odoo>
|
@@ -213,11 +213,6 @@ msgstr ""
|
|
213
213
|
msgid "E-invoice file name"
|
214
214
|
msgstr ""
|
215
215
|
|
216
|
-
#. module: l10n_it_fatturapa_out
|
217
|
-
#: model_terms:ir.ui.view,arch_db:l10n_it_fatturapa_out.account_invoice_line_it_FatturaPA
|
218
|
-
msgid "EAN"
|
219
|
-
msgstr ""
|
220
|
-
|
221
216
|
#. module: l10n_it_fatturapa_out
|
222
217
|
#: model_terms:ir.ui.view,arch_db:l10n_it_fatturapa_out.view_invoice_form_fatturapa
|
223
218
|
msgid "Electronic Invoice"
|
@@ -332,11 +327,6 @@ msgstr ""
|
|
332
327
|
msgid "ID"
|
333
328
|
msgstr ""
|
334
329
|
|
335
|
-
#. module: l10n_it_fatturapa_out
|
336
|
-
#: model_terms:ir.ui.view,arch_db:l10n_it_fatturapa_out.account_invoice_line_it_FatturaPA
|
337
|
-
msgid "INVCONT"
|
338
|
-
msgstr ""
|
339
|
-
|
340
330
|
#. module: l10n_it_fatturapa_out
|
341
331
|
#: model:ir.model.fields,help:l10n_it_fatturapa_out.field_fatturapa_attachment_out__message_needaction
|
342
332
|
msgid "If checked, new messages require your attention."
|
@@ -487,11 +477,6 @@ msgstr ""
|
|
487
477
|
msgid "Last Updated on"
|
488
478
|
msgstr ""
|
489
479
|
|
490
|
-
#. module: l10n_it_fatturapa_out
|
491
|
-
#: model_terms:ir.ui.view,arch_db:l10n_it_fatturapa_out.account_invoice_line_it_sconto_maggiorazione
|
492
|
-
msgid "MG"
|
493
|
-
msgstr ""
|
494
|
-
|
495
480
|
#. module: l10n_it_fatturapa_out
|
496
481
|
#: model:ir.model.fields,field_description:l10n_it_fatturapa_out.field_fatturapa_attachment_out__message_main_attachment_id
|
497
482
|
msgid "Main Attachment"
|
@@ -591,11 +576,6 @@ msgstr ""
|
|
591
576
|
msgid "Print report not found"
|
592
577
|
msgstr ""
|
593
578
|
|
594
|
-
#. module: l10n_it_fatturapa_out
|
595
|
-
#: model_terms:ir.ui.view,arch_db:l10n_it_fatturapa_out.account_invoice_it_cedente_prestatore
|
596
|
-
msgid "RF01"
|
597
|
-
msgstr ""
|
598
|
-
|
599
579
|
#. module: l10n_it_fatturapa_out
|
600
580
|
#: model_terms:ir.ui.view,arch_db:l10n_it_fatturapa_out.wizard_export_fatturapa_form_view_regenerate
|
601
581
|
msgid "Re-Export"
|
@@ -659,16 +639,6 @@ msgstr ""
|
|
659
639
|
msgid "Results"
|
660
640
|
msgstr ""
|
661
641
|
|
662
|
-
#. module: l10n_it_fatturapa_out
|
663
|
-
#: model_terms:ir.ui.view,arch_db:l10n_it_fatturapa_out.account_invoice_line_it_sconto_maggiorazione
|
664
|
-
msgid "SC"
|
665
|
-
msgstr ""
|
666
|
-
|
667
|
-
#. module: l10n_it_fatturapa_out
|
668
|
-
#: model_terms:ir.ui.view,arch_db:l10n_it_fatturapa_out.account_invoice_it_fattura_elettronica_body
|
669
|
-
msgid "SI"
|
670
|
-
msgstr ""
|
671
|
-
|
672
642
|
#. module: l10n_it_fatturapa_out
|
673
643
|
#: model:ir.model.fields.selection,name:l10n_it_fatturapa_out.selection__fatturapa_attachment_out__state__sender_error
|
674
644
|
#: model_terms:ir.ui.view,arch_db:l10n_it_fatturapa_out.view_fatturapa_out_attachment_search
|
@@ -701,11 +671,6 @@ msgstr ""
|
|
701
671
|
msgid "Stored Filename"
|
702
672
|
msgstr ""
|
703
673
|
|
704
|
-
#. module: l10n_it_fatturapa_out
|
705
|
-
#: model_terms:ir.ui.view,arch_db:l10n_it_fatturapa_out.account_invoice_it_FatturaPA_export
|
706
|
-
msgid "TZ"
|
707
|
-
msgstr ""
|
708
|
-
|
709
674
|
#. module: l10n_it_fatturapa_out
|
710
675
|
#. odoo-python
|
711
676
|
#: code:addons/l10n_it_fatturapa_out/models/company.py:0
|
@@ -790,11 +755,6 @@ msgstr ""
|
|
790
755
|
msgid "User %s uploaded a new e-invoice file"
|
791
756
|
msgstr ""
|
792
757
|
|
793
|
-
#. module: l10n_it_fatturapa_out
|
794
|
-
#: model_terms:ir.ui.view,arch_db:l10n_it_fatturapa_out.account_invoice_line_it_FatturaPA
|
795
|
-
msgid "Valuta"
|
796
|
-
msgstr ""
|
797
|
-
|
798
758
|
#. module: l10n_it_fatturapa_out
|
799
759
|
#: model:ir.model.fields,field_description:l10n_it_fatturapa_out.field_fatturapa_attachment_out__website_id
|
800
760
|
msgid "Website"
|
@@ -366,7 +366,7 @@ ul.auto-toc {
|
|
366
366
|
!! This file is generated by oca-gen-addon-readme !!
|
367
367
|
!! changes will be overwritten. !!
|
368
368
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
369
|
-
!! source digest: sha256:
|
369
|
+
!! source digest: sha256:daf4cf9840f14d753e15431c9154a58267b936d6751968a5f199e473e55a633f
|
370
370
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
371
371
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/l10n-italy/tree/16.0/l10n_it_fatturapa_out"><img alt="OCA/l10n-italy" src="https://img.shields.io/badge/github-OCA%2Fl10n--italy-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/l10n-italy-16-0/l10n-italy-16-0-l10n_it_fatturapa_out"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/l10n-italy&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
372
372
|
<p><strong>Italiano</strong></p>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-l10n_it_fatturapa_out
|
3
|
-
Version: 16.0.1.1.
|
3
|
+
Version: 16.0.1.1.1
|
4
4
|
Requires-Python: >=3.10
|
5
5
|
Requires-Dist: elementpath
|
6
6
|
Requires-Dist: odoo-addon-l10n_it_account>=16.0dev,<16.1dev
|
@@ -28,7 +28,7 @@ ITA - Fattura elettronica - Emissione
|
|
28
28
|
!! This file is generated by oca-gen-addon-readme !!
|
29
29
|
!! changes will be overwritten. !!
|
30
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
31
|
-
!! source digest: sha256:
|
31
|
+
!! source digest: sha256:daf4cf9840f14d753e15431c9154a58267b936d6751968a5f199e473e55a633f
|
32
32
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
33
33
|
|
34
34
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -1,7 +1,7 @@
|
|
1
|
-
odoo/addons/l10n_it_fatturapa_out/README.rst,sha256=
|
1
|
+
odoo/addons/l10n_it_fatturapa_out/README.rst,sha256=wYSGwZs08ChDz4JYLVehLC74X9XL2iGW9azPErln1YI,5649
|
2
2
|
odoo/addons/l10n_it_fatturapa_out/__init__.py,sha256=W3SLrBcwzfdkH0kPgcqn6I9vWke1eAXoWdS6LBjaLKw,137
|
3
|
-
odoo/addons/l10n_it_fatturapa_out/__manifest__.py,sha256=
|
4
|
-
odoo/addons/l10n_it_fatturapa_out/data/invoice_it_template.xml,sha256=
|
3
|
+
odoo/addons/l10n_it_fatturapa_out/__manifest__.py,sha256=Jc1cTKtgZWX_OBEjB3VbRdutI0v6vCxMKBnPdXbx7FI,1445
|
4
|
+
odoo/addons/l10n_it_fatturapa_out/data/invoice_it_template.xml,sha256=HHGIO_O16G2rWOdEyahUCJ9yOI1OjZZ_wC4KXy3Ljsw,37476
|
5
5
|
odoo/addons/l10n_it_fatturapa_out/data/l10n_it_fatturapa_out_data.xml,sha256=OkEskrtlI1TklcV52BeHnTe9Idmr438b8agZgD7in3c,320
|
6
6
|
odoo/addons/l10n_it_fatturapa_out/i18n/am.po,sha256=FrGfHmHkjZHK-DfghfLHrT585TYTFHYNx50YExAHaSY,30916
|
7
7
|
odoo/addons/l10n_it_fatturapa_out/i18n/ar.po,sha256=M5JuyaJQbxKZ2SBML31CY9rmMC3iwymQUMMVy96wPAI,31124
|
@@ -46,7 +46,7 @@ odoo/addons/l10n_it_fatturapa_out/i18n/id.po,sha256=kSPcEL1iS7FU-A13-Y0shr3BLC48
|
|
46
46
|
odoo/addons/l10n_it_fatturapa_out/i18n/it.po,sha256=NH9HSfbvFxgHNW_X9DF5ytYaPZo-S2z4q7wkIfMog9Y,42333
|
47
47
|
odoo/addons/l10n_it_fatturapa_out/i18n/ja.po,sha256=bS6dcKgXZB0jRdpU-t4mskqjhuoB327XPEn3sdSDslQ,30971
|
48
48
|
odoo/addons/l10n_it_fatturapa_out/i18n/ko.po,sha256=aJsaWSoYEnUGiyxGdKBlcJLD1wi_8dsJpYogSf4HFC8,30930
|
49
|
-
odoo/addons/l10n_it_fatturapa_out/i18n/l10n_it_fatturapa_out.pot,sha256=
|
49
|
+
odoo/addons/l10n_it_fatturapa_out/i18n/l10n_it_fatturapa_out.pot,sha256=hXSVTe6n72AwROtV5o78SxGY99NGGI3hs9zApn6i_ko,29319
|
50
50
|
odoo/addons/l10n_it_fatturapa_out/i18n/lo.po,sha256=OuKLPnrsOmDOLGQ173hVl-SizuBOVrWCRGbSBtkK_DU,30850
|
51
51
|
odoo/addons/l10n_it_fatturapa_out/i18n/lt.po,sha256=HF872Fzo1wC5-VfKDeiRWKDmhegzr7NwjJCMGKYWERo,31091
|
52
52
|
odoo/addons/l10n_it_fatturapa_out/i18n/lt_LT.po,sha256=bjB5HtljBCqKPvWVaJAJDBbEjS_gv-QTvE2uzBDYSWc,31008
|
@@ -90,7 +90,7 @@ odoo/addons/l10n_it_fatturapa_out/readme/USAGE.md,sha256=CPBqji3HDYYP9aGBkn6Cknh
|
|
90
90
|
odoo/addons/l10n_it_fatturapa_out/security/ir.model.access.csv,sha256=hheFLdZySR_wQd0-zdRpJeewdlrlE1LtKj_-seX_3pM,340
|
91
91
|
odoo/addons/l10n_it_fatturapa_out/security/rules.xml,sha256=6_swzyFR5GaxWSA9j3NeUOVGgKVbLDOFk7jVDzUdUfg,514
|
92
92
|
odoo/addons/l10n_it_fatturapa_out/static/description/icon.png,sha256=_NDgbxF3ta8ijPcvP_MPNmjN8w4hlN218cE3omw8EGM,4829
|
93
|
-
odoo/addons/l10n_it_fatturapa_out/static/description/index.html,sha256=
|
93
|
+
odoo/addons/l10n_it_fatturapa_out/static/description/index.html,sha256=AQqgkK_LjNXnBdlveS0HvRNm-ftZ4VGPFRCqLhb_M6c,16416
|
94
94
|
odoo/addons/l10n_it_fatturapa_out/tests/__init__.py,sha256=KNxMSQSj8RCCaGVrqzTQ5Od7v2x6gUrdZz_PubpUp2A,148
|
95
95
|
odoo/addons/l10n_it_fatturapa_out/tests/fatturapa_common.py,sha256=WK3-H3_h8YklXN3x-cwS1o1zPeEukuL9lvRi385qBhM,11487
|
96
96
|
odoo/addons/l10n_it_fatturapa_out/tests/test_fatturapa_out_noteline.py,sha256=KO7of281GNIPLjcAJXv-2jdA9q1nFLGu8XBcftGrlE4,8950
|
@@ -125,7 +125,7 @@ odoo/addons/l10n_it_fatturapa_out/wizard/wizard_export_fatturapa.py,sha256=AnNQQ
|
|
125
125
|
odoo/addons/l10n_it_fatturapa_out/wizard/wizard_export_fatturapa_regenerate.py,sha256=wWr5g6bT1WkXetBmcsS5KRtICisb2eb3BxiEaNnsma4,2357
|
126
126
|
odoo/addons/l10n_it_fatturapa_out/wizard/wizard_export_fatturapa_view.xml,sha256=ljilCk05gfHX2AvYGyGF4ayuikz5-y8fweD_S2PiHgM,1795
|
127
127
|
odoo/addons/l10n_it_fatturapa_out/wizard/wizard_export_fatturapa_view_regenerate.xml,sha256=ZK2JL46SfqWWClapEhwW65PXWxffvxZKFrmQSU9Iyrs,1465
|
128
|
-
odoo_addon_l10n_it_fatturapa_out-16.0.1.1.
|
129
|
-
odoo_addon_l10n_it_fatturapa_out-16.0.1.1.
|
130
|
-
odoo_addon_l10n_it_fatturapa_out-16.0.1.1.
|
131
|
-
odoo_addon_l10n_it_fatturapa_out-16.0.1.1.
|
128
|
+
odoo_addon_l10n_it_fatturapa_out-16.0.1.1.1.dist-info/METADATA,sha256=wsAvK8vqk6587OJN-YbOawZtPlrU-Tt0t2zmiS6CC-A,6495
|
129
|
+
odoo_addon_l10n_it_fatturapa_out-16.0.1.1.1.dist-info/WHEEL,sha256=8Rd4enx1PCuyDWP4SABqO5Fv8rpaknqp3VzjoFFLa6c,83
|
130
|
+
odoo_addon_l10n_it_fatturapa_out-16.0.1.1.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
131
|
+
odoo_addon_l10n_it_fatturapa_out-16.0.1.1.1.dist-info/RECORD,,
|
File without changes
|