From 3bbabec6dcff07cb6128e7449efa100064b337f3 Mon Sep 17 00:00:00 2001 From: Jose Rilla Date: Wed, 5 Aug 2026 15:32:24 +0000 Subject: [PATCH] Describe it-ticket exemption codes --- addons/it/ticket/extensions.go | 38 ++++++++++++++++++++++++++++++++++ data/addons/it-ticket-v1.json | 18 ++++++++++++++++ 2 files changed, 56 insertions(+) diff --git a/addons/it/ticket/extensions.go b/addons/it/ticket/extensions.go index 549bbcfa6..f43341304 100644 --- a/addons/it/ticket/extensions.go +++ b/addons/it/ticket/extensions.go @@ -29,6 +29,12 @@ var extensions = []*cbc.Definition{ i18n.EN: "Excluded pursuant to Art. 15, DPR 633/72", i18n.IT: "Escluse ex. art. 15 del D.P.R. 633/1972", }, + Desc: i18n.String{ + i18n.EN: here.Doc(` + Amounts excluded from the taxable base, such as default interest, + penalties, and sums advanced on behalf of the customer. + `), + }, }, { Code: "N2", @@ -36,6 +42,13 @@ var extensions = []*cbc.Definition{ i18n.EN: "Not subject", i18n.IT: "Non soggette", }, + Desc: i18n.String{ + i18n.EN: here.Doc(` + Operations outside the scope of Italian VAT, either because a + requirement for taxation is not met, or because of the supplier's + regime, such as the flat-rate regime (regime forfettario). + `), + }, }, { Code: "N3", @@ -43,6 +56,12 @@ var extensions = []*cbc.Definition{ i18n.EN: "Not taxable", i18n.IT: "Non imponibili", }, + Desc: i18n.String{ + i18n.EN: here.Doc(` + Operations within the scope of VAT but not taxable by law, such as + exports, international services, and intra-community supplies. + `), + }, }, { Code: "N4", @@ -50,6 +69,12 @@ var extensions = []*cbc.Definition{ i18n.EN: "Exempt", i18n.IT: "Esenti", }, + Desc: i18n.String{ + i18n.EN: here.Doc(` + Operations exempt under Art. 10 of DPR 633/72, such as medical, + financial, insurance, and educational services. + `), + }, }, { Code: "N5", @@ -57,6 +82,13 @@ var extensions = []*cbc.Definition{ i18n.EN: "Margin regime / VAT not exposed", i18n.IT: "Regime del margine/IVA non esposta in fattura", }, + Desc: i18n.String{ + i18n.EN: here.Doc(` + Sales under the margin scheme for second-hand goods, works of art, + and antiques, where VAT is included in the price but not shown + separately. + `), + }, }, { Code: "N6", @@ -64,6 +96,12 @@ var extensions = []*cbc.Definition{ i18n.EN: "Reverse charge", i18n.IT: "Inversione contabile", }, + Desc: i18n.String{ + i18n.EN: here.Doc(` + Operations for which the customer is liable for the VAT instead of + the supplier. + `), + }, }, }, }, diff --git a/data/addons/it-ticket-v1.json b/data/addons/it-ticket-v1.json index 5f2c73321..d5fca8c23 100644 --- a/data/addons/it-ticket-v1.json +++ b/data/addons/it-ticket-v1.json @@ -33,6 +33,9 @@ "name": { "en": "Excluded pursuant to Art. 15, DPR 633/72", "it": "Escluse ex. art. 15 del D.P.R. 633/1972" + }, + "desc": { + "en": "Amounts excluded from the taxable base, such as default interest,\npenalties, and sums advanced on behalf of the customer." } }, { @@ -40,6 +43,9 @@ "name": { "en": "Not subject", "it": "Non soggette" + }, + "desc": { + "en": "Operations outside the scope of Italian VAT, either because a\nrequirement for taxation is not met, or because of the supplier's\nregime, such as the flat-rate regime (regime forfettario)." } }, { @@ -47,6 +53,9 @@ "name": { "en": "Not taxable", "it": "Non imponibili" + }, + "desc": { + "en": "Operations within the scope of VAT but not taxable by law, such as\nexports, international services, and intra-community supplies." } }, { @@ -54,6 +63,9 @@ "name": { "en": "Exempt", "it": "Esenti" + }, + "desc": { + "en": "Operations exempt under Art. 10 of DPR 633/72, such as medical,\nfinancial, insurance, and educational services." } }, { @@ -61,6 +73,9 @@ "name": { "en": "Margin regime / VAT not exposed", "it": "Regime del margine/IVA non esposta in fattura" + }, + "desc": { + "en": "Sales under the margin scheme for second-hand goods, works of art,\nand antiques, where VAT is included in the price but not shown\nseparately." } }, { @@ -68,6 +83,9 @@ "name": { "en": "Reverse charge", "it": "Inversione contabile" + }, + "desc": { + "en": "Operations for which the customer is liable for the VAT instead of\nthe supplier." } } ]