Skip to content

Commit

Permalink
[12.0][IMP] l10n it account tax kind fatturapa 1.6 (OCA#1865)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiocorato authored and eLBati committed Sep 30, 2020
1 parent 8961c64 commit 0ffdf54
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
19 changes: 18 additions & 1 deletion l10n_it_account_tax_kind/data/account.tax.kind.csv
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,21 @@ n3,N3,Non imponibili
n4,N4,Esenti
n5,N5,Regime del margine / IVA non esposta in fattura
n6,N6,Inversione contabile
n7,N7,IVA assolta in altro stato UE
n7,N7,IVA assolta in altro stato UE
n2_1,N2.1,non soggette ad IVA ai sensi degli artt. da 7 a 7-septies del DPR 633/72
n2_2,N2.2,non soggette – altri casi
n3_1,N3.1,non imponibili – esportazioni
n3_2,N3.2,non imponibili – cessioni intracomunitarie
n3_3,N3.3,non imponibili – cessioni verso San Marino
n3_4,N3.4,non imponibili – operazioni assimilate alle cessioni all’esportazione
n3_5,N3.5,non imponibili – a seguito di dichiarazioni d’intento
n3_6,N3.6,non imponibili – altre operazioni che non concorrono alla formazione del plafond
n6_1,N6.1,inversione contabile – cessione di rottami e altri materiali di recupero
n6_2,N6.2,inversione contabile – cessione di oro e argento puro
n6_3,N6.3,inversione contabile – subappalto nel settore edile
n6_4,N6.4,inversione contabile – cessione di fabbricati
n6_5,N6.5,inversione contabile – cessione di telefoni cellulari
n6_6,N6.6,inversione contabile – cessione di prodotti elettronici
n6_7,N6.7,inversione contabile – prestazioni comparto edile e settori connessi
n6_8,N6.8,inversione contabile – operazioni settore energetico
n6_9,N6.9,inversione contabile – altri casi
2 changes: 1 addition & 1 deletion l10n_it_account_tax_kind/model/account_tax_kind.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class AccountTaxKind(models.Model):
_name = 'account.tax.kind'
_description = 'Tax exemption kind'

code = fields.Char(string='Code', size=3, required=True)
code = fields.Char(string='Code', size=4, required=True)
name = fields.Char(string='Name', required=True)

@api.multi
Expand Down
19 changes: 19 additions & 0 deletions l10n_it_fatturapa/models/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,29 @@ class FaturapaSummaryData(models.Model):
non_taxable_nature = fields.Selection([
('N1', 'excluding ex Art. 15'),
('N2', 'not subject'),
('N2.1', 'not subject ex Artt. from 7 to 7-septies of DPR 633/72'),
('N2.2', 'not subject – other'),
('N3', 'not taxable'),
('N3.1', 'not taxable – export'),
('N3.2', 'not taxable – intercommunity cession'),
('N3.3', 'not taxable – cession to San Marino'),
('N3.4', 'not taxable – operation similar to export cession'),
('N3.5', 'not taxable – following declarations of intent'),
('N3.6', 'not taxable – other operations that do not contribute '
'to the formation of the ceiling'),
('N4', 'exempt'),
('N5', 'margin regime'),
('N6', 'reverse charge'),
('N6.1', 'reverse charge – disposal of scrap and other recycled '
'materials'),
('N6.2', 'reverse charge – supply of gold and pure silver'),
('N6.3', 'reverse charge – subcontracting in the construction sector'),
('N6.4', 'reverse charge – sale of buildings'),
('N6.5', 'reverse charge – transfer of cell phones'),
('N6.6', 'reverse charge – sale of electronic products'),
('N6.7', 'reverse charge – construction sector and related sectors'),
('N6.8', 'reverse charge – energy sector operations'),
('N6.9', 'reverse charge – other cases'),
('N7', 'VAT paid in another EU country')
], string="Non taxable nature")
incidental_charges = fields.Float('Incidental Charges')
Expand Down

0 comments on commit 0ffdf54

Please sign in to comment.