forked from invopop/gobl.fatturapa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems.go
129 lines (108 loc) · 3.49 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
package fatturapa
import (
"strconv"
"github.com/invopop/gobl/bill"
"github.com/invopop/gobl/i18n"
"github.com/invopop/gobl/regimes/it"
"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
Descrizione string
Quantita string
PrezzoUnitario string
ScontoMaggiorazione []*scontoMaggiorazione `xml:",omitempty"`
PrezzoTotale string
AliquotaIVA string
Natura string `xml:",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
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.Sum),
ScontoMaggiorazione: extractLinePriceAdjustments(line),
}
if line.Taxes != nil && len(line.Taxes) > 0 {
vatTax := line.Taxes.Get(tax.CategoryVAT)
if vatTax != nil {
d.AliquotaIVA = formatPercentage(vatTax.Percent)
d.Natura = vatTax.Ext[it.ExtKeySDINature].String()
}
}
dl = append(dl, d)
}
return dl
}
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: formatPercentage(rateTotal.Percent),
Natura: rateTotal.Ext[it.ExtKeySDINature].String(),
ImponibileImporto: formatAmount(&rateTotal.Base),
Imposta: formatAmount(&rateTotal.Amount),
RiferimentoNormativo: findRiferimentoNormativo(rateTotal),
})
}
return dr
}
func extractLinePriceAdjustments(line *bill.Line) []*scontoMaggiorazione {
var scontiMaggiorazioni []*scontoMaggiorazione
for _, discount := range line.Discounts {
scontiMaggiorazioni = append(scontiMaggiorazioni, &scontoMaggiorazione{
Tipo: scontoMaggiorazioneTypeDiscount,
Percentuale: formatPercentage(discount.Percent),
Importo: formatAmount(&discount.Amount),
})
}
for _, charge := range line.Charges {
scontiMaggiorazioni = append(scontiMaggiorazioni, &scontoMaggiorazione{
Tipo: scontoMaggiorazioneTypeCharge,
Percentuale: formatPercentage(charge.Percent),
Importo: formatAmount(&charge.Amount),
})
}
return scontiMaggiorazioni
}
func findRiferimentoNormativo(rateTotal *tax.RateTotal) string {
def := regime.ExtensionDef(it.ExtKeySDINature)
nature := rateTotal.Ext[it.ExtKeySDINature].Code()
for _, c := range def.Codes {
if c.Code == nature {
return c.Name[i18n.IT]
}
}
return ""
}