-
Notifications
You must be signed in to change notification settings - Fork 2
/
items.go
146 lines (124 loc) · 4.3 KB
/
items.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package fatturapa
import (
"strconv"
"github.com/invopop/gobl/addons/it/sdi"
"github.com/invopop/gobl/bill"
"github.com/invopop/gobl/i18n"
"github.com/invopop/gobl/tax"
)
// datiBeniServizi contains all data related to the goods and services sold.
type datiBeniServizi struct {
DettaglioLinee []*dettaglioLinee
DatiRiepilogo []*datiRiepilogo
}
// dettaglioLinee contains line data such as description, quantity, price, etc.
type dettaglioLinee struct {
NumeroLinea string `xml:"NumeroLinea"`
Descrizione string `xml:"Descrizione"`
Quantita string `xml:"Quantita"`
PrezzoUnitario string `xml:"PrezzoUnitario"`
ScontoMaggiorazione []*scontoMaggiorazione `xml:"ScontoMaggiorazione,omitempty"`
PrezzoTotale string `xml:"PrezzoTotale"`
AliquotaIVA string `xml:"AliquotaIVA"`
Natura string `xml:"Natura,omitempty"`
}
// datiRiepilogo contains tax summary data such as tax rate, tax amount, etc.
type datiRiepilogo struct {
AliquotaIVA string
Natura string `xml:",omitempty"`
ImponibileImporto string
Imposta string
EsigibilitaIVA string `xml:"EsigibilitaIVA,omitempty"`
RiferimentoNormativo string `xml:",omitempty"`
}
func newDatiBeniServizi(inv *bill.Invoice) *datiBeniServizi {
return &datiBeniServizi{
DettaglioLinee: generateLineDetails(inv),
DatiRiepilogo: generateTaxSummary(inv),
}
}
func generateLineDetails(inv *bill.Invoice) []*dettaglioLinee {
var dl []*dettaglioLinee
for _, line := range inv.Lines {
d := &dettaglioLinee{
NumeroLinea: strconv.Itoa(line.Index),
Descrizione: line.Item.Name,
Quantita: formatAmount(&line.Quantity),
PrezzoUnitario: formatAmount(&line.Item.Price),
PrezzoTotale: formatAmount(&line.Total),
ScontoMaggiorazione: extractLinePriceAdjustments(line),
}
if line.Taxes != nil && len(line.Taxes) > 0 {
vatTax := line.Taxes.Get(tax.CategoryVAT)
if vatTax != nil {
d.AliquotaIVA = formatPercentageWithZero(vatTax.Percent)
d.Natura = exemptExtensionCode(vatTax.Ext)
}
}
dl = append(dl, d)
}
return dl
}
func exemptExtensionCode(ext tax.Extensions) string {
if ext.Has(sdi.ExtKeyExempt) {
return ext[sdi.ExtKeyExempt].String()
}
if ext.Has("it-sdi-nature") { // old key
return ext["it-sdi-nature"].String()
}
return ""
}
func generateTaxSummary(inv *bill.Invoice) []*datiRiepilogo {
var dr []*datiRiepilogo
var vatRateTotals []*tax.RateTotal
for _, cat := range inv.Totals.Taxes.Categories {
if cat.Code == tax.CategoryVAT {
vatRateTotals = cat.Rates
break
}
}
for _, rateTotal := range vatRateTotals {
dr = append(dr, &datiRiepilogo{
AliquotaIVA: formatPercentageWithZero(rateTotal.Percent),
Natura: exemptExtensionCode(rateTotal.Ext),
ImponibileImporto: formatAmount(&rateTotal.Base),
Imposta: formatAmount(&rateTotal.Amount),
EsigibilitaIVA: rateTotal.Ext[sdi.ExtKeyVATLiability].String(),
RiferimentoNormativo: findRiferimentoNormativo(rateTotal),
})
}
return dr
}
func extractLinePriceAdjustments(line *bill.Line) []*scontoMaggiorazione {
list := make([]*scontoMaggiorazione, 0)
for _, discount := range line.Discounts {
// Unlike most formats, FatturaPA applies the discount to the unit price
// instead of the line sum.
// Quick ref: https://fex-app.com/FatturaElettronica/FatturaElettronicaBody/DatiBeniServizi/DettaglioLinee/PrezzoTotale
a := discount.Amount.Divide(line.Quantity)
list = append(list, &scontoMaggiorazione{
Tipo: scontoMaggiorazioneTypeDiscount,
Percentuale: formatPercentage(discount.Percent),
Importo: formatAmount(&a),
})
}
for _, charge := range line.Charges {
a := charge.Amount.Divide(line.Quantity)
list = append(list, &scontoMaggiorazione{
Tipo: scontoMaggiorazioneTypeCharge,
Percentuale: formatPercentage(charge.Percent),
Importo: formatAmount(&a),
})
}
return list
}
func findRiferimentoNormativo(rateTotal *tax.RateTotal) string {
def := tax.ExtensionForKey(sdi.ExtKeyExempt)
nature := exemptExtensionCode(rateTotal.Ext)
for _, c := range def.Values {
if c.Value == nature {
return c.Name[i18n.IT]
}
}
return ""
}