-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbody.go
247 lines (210 loc) · 7.29 KB
/
body.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
package fatturapa
import (
"errors"
"fmt"
"github.com/invopop/gobl/addons/it/sdi"
"github.com/invopop/gobl/bill"
"github.com/invopop/gobl/cbc"
"github.com/invopop/gobl/org"
)
const (
scontoMaggiorazioneTypeDiscount = "SC" // sconto
scontoMaggiorazioneTypeCharge = "MG" // maggiorazione
)
const (
condizioniPagamentoInstallments = "TP01" // pagamenti in rate
condizioniPagamentoFull = "TP02" // pagamento completo
condizioniPagamentoAdvance = "TP03" // anticipo
)
const stampDutyCode = "SI"
// fatturaElettronicaBody contains all invoice data apart from the parties
// involved, which are contained in FatturaElettronicaHeader.
type fatturaElettronicaBody struct {
DatiGenerali *GeneralData `xml:"DatiGenerali,omitempty"`
DatiBeniServizi *datiBeniServizi
DatiPagamento *datiPagamento `xml:",omitempty"`
}
// GeneralData contains general data about the invoice such as retained taxes,
// invoice number, invoice date, document type, etc.
type GeneralData struct {
Document *datiGeneraliDocumento `xml:"DatiGeneraliDocumento"`
Purchases []*DocumentRef `xml:"DatiOrdineAcquisto,omitempty"`
Contracts []*DocumentRef `xml:"DatiContratto,omitempty"`
Tender []*DocumentRef `xml:"DatiConvenzione,omitempty"`
Receiving []*DocumentRef `xml:"DatiRicezione,omitempty"`
Preceding []*DocumentRef `xml:"DatiFattureCollegate,omitempty"`
}
// DocumentRef contains data about a previous document.
type DocumentRef struct {
Lines []int `xml:"RiferimentoNumeroLinea"` // detail row of the invoice referred to (if the reference is to the entire invoice, this is not filled in)
Code string `xml:"IdDocumento"` // document number
IssueDate string `xml:"Data,omitempty"` // document date (expressed according to the ISO 8601:2004 format)
LineCode string `xml:"NumItem,omitempty"` // identification of the single item on the document (e.g. in the case of a purchase order, this is the number of the row of the purchase order, or, in the case of a contract, it is the number of the row of the contract, etc. )
OrderCode string `xml:"CodiceCommessaConvenzione,omitempty"` // order or agreement code
CUPCode string `xml:"CodiceCUP,omitempty"` // code managed by the CIPE (Interministerial Committee for Economic Planning) which characterises every public investment project (Individual Project Code).
CIGCode string `xml:"CodiceCIG,omitempty"` // Tender procedure identification code
}
type datiGeneraliDocumento struct {
TipoDocumento string
Divisa string
Data string
Numero string
DatiRitenuta []*datiRitenuta
DatiBollo *datiBollo `xml:",omitempty"`
ScontoMaggiorazione []*scontoMaggiorazione
ImportoTotaleDocumento string `xml:",omitempty"`
Causale []string
}
// datiBollo contains data about the stamp duty
type datiBollo struct {
BolloVirtuale string
ImportoBollo string `xml:",omitempty"`
}
// scontoMaggiorazione contains data about price adjustments like discounts and
// charges.
type scontoMaggiorazione struct {
Tipo string `xml:"Tipo"`
Percentuale string `xml:"Percentuale,omitempty"`
Importo string `xml:"Importo,omitempty"`
}
func newFatturaElettronicaBody(inv *bill.Invoice) (*fatturaElettronicaBody, error) {
dbs := newDatiBeniServizi(inv)
dp, err := newDatiPagamento(inv)
if err != nil {
return nil, err
}
dg, err := newGeneralData(inv)
if err != nil {
return nil, err
}
return &fatturaElettronicaBody{
DatiGenerali: dg,
DatiBeniServizi: dbs,
DatiPagamento: dp,
}, nil
}
func newGeneralData(inv *bill.Invoice) (*GeneralData, error) {
gd := new(GeneralData)
var err error
if gd.Document, err = newGeneralDataDocument(inv); err != nil {
return nil, err
}
gd.Preceding = newDocumentRefs(inv.Preceding)
if o := inv.Ordering; o != nil {
gd.Purchases = newDocumentRefs(o.Purchases)
gd.Contracts = newDocumentRefs(o.Contracts)
gd.Tender = newDocumentRefs(o.Tender)
gd.Receiving = newDocumentRefs(o.Receiving)
}
return gd, nil
}
func newDocumentRefs(refs []*org.DocumentRef) []*DocumentRef {
out := make([]*DocumentRef, len(refs))
for i, ref := range refs {
out[i] = newDocumentRef(ref)
}
return out
}
func newDocumentRef(ref *org.DocumentRef) *DocumentRef {
dr := &DocumentRef{
Lines: ref.Lines,
Code: ref.Series.Join(ref.Code).String(),
}
if ref.IssueDate != nil {
dr.IssueDate = ref.IssueDate.String()
}
for _, id := range ref.Identities {
switch id.Key {
case org.IdentityKeyOrder:
dr.OrderCode = string(id.Code)
case org.IdentityKeyItem:
dr.LineCode = string(id.Code)
}
switch id.Type {
case sdi.IdentityTypeCIG:
dr.CIGCode = string(id.Code)
case sdi.IdentityTypeCUP:
dr.CUPCode = string(id.Code)
}
}
return dr
}
func newGeneralDataDocument(inv *bill.Invoice) (*datiGeneraliDocumento, error) {
dr, err := extractRetainedTaxes(inv)
if err != nil {
return nil, err
}
codeTipoDocumento, err := findCodeTipoDocumento(inv)
if err != nil {
return nil, err
}
switch codeTipoDocumento {
case "TD07", "TD08", "TD09":
return nil, errors.New("simplified invoices are not currently supported")
}
code := inv.Code
if inv.Series != "" {
code = cbc.Code(fmt.Sprintf("%s-%s", inv.Series, inv.Code))
}
doc := &datiGeneraliDocumento{
TipoDocumento: codeTipoDocumento,
Divisa: string(inv.Currency),
Data: inv.IssueDate.String(),
Numero: code.String(),
DatiRitenuta: dr,
DatiBollo: newDatiBollo(inv.Charges),
ImportoTotaleDocumento: formatAmount(&inv.Totals.Payable),
ScontoMaggiorazione: extractPriceAdjustments(inv),
Causale: extractInvoiceReasons(inv),
}
return doc, nil
}
func findCodeTipoDocumento(inv *bill.Invoice) (string, error) {
if inv.Tax == nil {
return "", fmt.Errorf("missing tax")
}
val, ok := inv.Tax.Ext[sdi.ExtKeyDocumentType]
if !ok || val == "" {
return "", fmt.Errorf("missing %s", sdi.ExtKeyDocumentType)
}
return val.String(), nil
}
func newDatiBollo(charges []*bill.Charge) *datiBollo {
for _, charge := range charges {
if charge.Key == bill.ChargeKeyStampDuty {
return &datiBollo{
BolloVirtuale: stampDutyCode,
ImportoBollo: formatAmount(&charge.Amount),
}
}
}
return nil
}
func extractPriceAdjustments(inv *bill.Invoice) []*scontoMaggiorazione {
var scontiMaggiorazioni []*scontoMaggiorazione
for _, discount := range inv.Discounts {
scontiMaggiorazioni = append(scontiMaggiorazioni, &scontoMaggiorazione{
Tipo: scontoMaggiorazioneTypeDiscount,
Percentuale: formatPercentage(discount.Percent),
Importo: formatAmount(&discount.Amount),
})
}
for _, charge := range inv.Charges {
scontiMaggiorazioni = append(scontiMaggiorazioni, &scontoMaggiorazione{
Tipo: scontoMaggiorazioneTypeCharge,
Percentuale: formatPercentage(charge.Percent),
Importo: formatAmount(&charge.Amount),
})
}
return scontiMaggiorazioni
}
func extractInvoiceReasons(inv *bill.Invoice) []string {
// find inv.Notes with NoteKey as cbc.NoteKeyReason
var reasons []string
for _, note := range inv.Notes {
if note.Key == cbc.NoteKeyReason {
reasons = append(reasons, note.Text)
}
}
return reasons
}