forked from OCA/l10n-italy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] l10n_it_fatturapa_out: supporto per la conversione degli import…
…i in EUR per fatture in valuta estera
- Loading branch information
Showing
9 changed files
with
371 additions
and
170 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
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 |
---|---|---|
@@ -1,9 +1,12 @@ | ||
# Copyright 2019 Roberto Fichera <[email protected]> | ||
# Copyright 2022 Marco Colombo <[email protected]> | ||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). | ||
|
||
from odoo import _, api, fields, models | ||
from odoo.exceptions import ValidationError | ||
|
||
_DEFAULT_XML_DIVISA_VALUE = "force_eur" | ||
|
||
|
||
class ResCompany(models.Model): | ||
_inherit = "res.company" | ||
|
@@ -15,6 +18,15 @@ class ResCompany(models.Model): | |
"in a single XML file. 0=Unlimited", | ||
) | ||
|
||
xml_divisa_value = fields.Selection( | ||
[ | ||
("keep_orig", "Keep original"), | ||
("force_eur", "Force euro"), | ||
], | ||
string="XML Divisa value", | ||
default=_DEFAULT_XML_DIVISA_VALUE, | ||
) | ||
|
||
@api.constrains("max_invoice_in_xml") | ||
def _validate_max_invoice_in_xml(self): | ||
if self.max_invoice_in_xml < 0: | ||
|
@@ -33,12 +45,20 @@ class AccountConfigSettings(models.TransientModel): | |
related="company_id.max_invoice_in_xml", readonly=False | ||
) | ||
|
||
xml_divisa_value = fields.Selection( | ||
related="company_id.xml_divisa_value", readonly=False | ||
) | ||
|
||
@api.onchange("company_id") | ||
def onchange_company_id(self): | ||
res = super(AccountConfigSettings, self).onchange_company_id() | ||
if self.company_id: | ||
company = self.company_id | ||
self.max_invoice_in_xml = company.max_invoice_in_xml or 0 | ||
self.xml_divisa_value = ( | ||
company.xml_divisa_value or _DEFAULT_XML_DIVISA_VALUE | ||
) | ||
else: | ||
self.max_invoice_in_xml = 0 | ||
self.xml_divisa_value = _DEFAULT_XML_DIVISA_VALUE | ||
return res |
104 changes: 0 additions & 104 deletions
104
l10n_it_fatturapa_out/tests/data/IT06363391001_00009.xml
This file was deleted.
Oops, something went wrong.
105 changes: 105 additions & 0 deletions
105
l10n_it_fatturapa_out/tests/data/IT06363391001_00015.xml
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,105 @@ | ||
<?xml version="1.0"?> | ||
<ns1:FatturaElettronica xmlns:ns1="http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.2" versione="FPA12"> | ||
<FatturaElettronicaHeader> | ||
<DatiTrasmissione> | ||
<IdTrasmittente> | ||
<IdPaese>IT</IdPaese> | ||
<IdCodice>06363391001</IdCodice> | ||
</IdTrasmittente> | ||
<ProgressivoInvio>00015</ProgressivoInvio> | ||
<FormatoTrasmissione>FPA12</FormatoTrasmissione> | ||
<CodiceDestinatario>UFPQ1O</CodiceDestinatario> | ||
<ContattiTrasmittente> | ||
<Telefono>06543534343</Telefono> | ||
<Email>[email protected]</Email> | ||
</ContattiTrasmittente> | ||
</DatiTrasmissione> | ||
<CedentePrestatore> | ||
<DatiAnagrafici> | ||
<IdFiscaleIVA> | ||
<IdPaese>IT</IdPaese> | ||
<IdCodice>06363391001</IdCodice> | ||
</IdFiscaleIVA> | ||
<Anagrafica> | ||
<Denominazione>YourCompany</Denominazione> | ||
</Anagrafica> | ||
<RegimeFiscale>RF01</RegimeFiscale> | ||
</DatiAnagrafici> | ||
<Sede> | ||
<Indirizzo>Via Milano, 1</Indirizzo> | ||
<CAP>00100</CAP> | ||
<Comune>Roma</Comune> | ||
<Provincia>AK</Provincia> | ||
<Nazione>IT</Nazione> | ||
</Sede> | ||
<Contatti> | ||
<Telefono>06543534343</Telefono> | ||
<Email>[email protected]</Email> | ||
</Contatti> | ||
</CedentePrestatore> | ||
<CessionarioCommittente> | ||
<DatiAnagrafici> | ||
<IdFiscaleIVA> | ||
<IdPaese>IT</IdPaese> | ||
<IdCodice>06363391001</IdCodice> | ||
</IdFiscaleIVA> | ||
<CodiceFiscale>06363391001</CodiceFiscale> | ||
<Anagrafica> | ||
<Denominazione>Public Administration</Denominazione> | ||
</Anagrafica> | ||
</DatiAnagrafici> | ||
<Sede> | ||
<Indirizzo>Via Roma, 1</Indirizzo> | ||
<CAP>10100</CAP> | ||
<Comune>Torino</Comune> | ||
<Provincia>AK</Provincia> | ||
<Nazione>IT</Nazione> | ||
</Sede> | ||
</CessionarioCommittente> | ||
</FatturaElettronicaHeader> | ||
<FatturaElettronicaBody> | ||
<DatiGenerali> | ||
<DatiGeneraliDocumento> | ||
<TipoDocumento>TD01</TipoDocumento> | ||
<Divisa>EUR</Divisa> | ||
<Data>2021-12-16</Data> | ||
<Numero>INV/2021/12/0001</Numero> | ||
<ImportoTotaleDocumento>14.00</ImportoTotaleDocumento> | ||
<Art73>SI</Art73> | ||
</DatiGeneraliDocumento> | ||
</DatiGenerali> | ||
<DatiBeniServizi> | ||
<DettaglioLinee> | ||
<NumeroLinea>1</NumeroLinea> | ||
<Descrizione>Cabinet with Doors</Descrizione> | ||
<Quantita>1.000</Quantita> | ||
<UnitaMisura>Unit(s)</UnitaMisura> | ||
<PrezzoUnitario>14.00000</PrezzoUnitario> | ||
<PrezzoTotale>14.00</PrezzoTotale> | ||
<AliquotaIVA>0.00</AliquotaIVA> | ||
<Natura>N3.2</Natura> | ||
<AltriDatiGestionali> | ||
<TipoDato>Valuta</TipoDato> | ||
<RiferimentoTesto>USD</RiferimentoTesto> | ||
<RiferimentoNumero>16.38000</RiferimentoNumero> | ||
<RiferimentoData>2021-12-16</RiferimentoData> | ||
</AltriDatiGestionali> | ||
</DettaglioLinee> | ||
<DatiRiepilogo> | ||
<AliquotaIVA>0.00</AliquotaIVA> | ||
<Natura>N3.2</Natura> | ||
<ImponibileImporto>14.00</ImponibileImporto> | ||
<Imposta>0.00</Imposta> | ||
<RiferimentoNormativo>Not subject to VAT law</RiferimentoNormativo> | ||
</DatiRiepilogo> | ||
</DatiBeniServizi> | ||
<DatiPagamento> | ||
<CondizioniPagamento>TP02</CondizioniPagamento> | ||
<DettaglioPagamento> | ||
<ModalitaPagamento>MP05</ModalitaPagamento> | ||
<DataScadenzaPagamento>2022-01-31</DataScadenzaPagamento> | ||
<ImportoPagamento>14.00</ImportoPagamento> | ||
</DettaglioPagamento> | ||
</DatiPagamento> | ||
</FatturaElettronicaBody> | ||
</ns1:FatturaElettronica> |
Oops, something went wrong.