forked from invopop/gobl.fatturapa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parties.go
201 lines (167 loc) · 4.53 KB
/
parties.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
package fatturapa
import (
"github.com/invopop/gobl/l10n"
"github.com/invopop/gobl/org"
"github.com/invopop/gobl/regimes/it"
"github.com/invopop/gobl/tax"
)
const (
statoLiquidazioneDefault = "LN"
nonITCitizenTaxCodeDefault = "0000000"
nonEUBusinessTaxCodeDefault = "OO99999999999"
)
type supplier struct {
DatiAnagrafici *datiAnagrafici
Sede *address
IscrizioneREA *iscrizioneREA `xml:",omitempty"`
Contatti *contatti `xml:",omitempty"`
}
type customer struct {
DatiAnagrafici *datiAnagrafici
Sede *address
}
// datiAnagrafici contains information related to an individual or company
type datiAnagrafici struct {
IdFiscaleIVA *taxID `xml:",omitempty"` // nolint:revive
// CodiceFiscale is the Italian fiscal code, distinct from TaxID
CodiceFiscale string `xml:",omitempty"`
Anagrafica *anagrafica
// RegimeFiscale identifies the tax system to be applied
// Has the form RFXX where XX is numeric; required only for the supplier
RegimeFiscale string `xml:",omitempty"`
}
// anagrafica contains further party information
type anagrafica struct {
// Name of the organization
Denominazione string `xml:",omitempty"`
// Name of the person
Nome string `xml:",omitempty"`
// Surname of the person
Cognome string `xml:",omitempty"`
// Title of the person
Titolo string `xml:",omitempty"`
// EORI (Economic Operator Registration and Identification) code
CodEORI string `xml:",omitempty"`
}
// iscrizioneREA contains information related to the company registration details (REA)
type iscrizioneREA struct {
// Initials of the province where the company's Registry Office is located
Ufficio string
// Company's REA registration number
NumeroREA string
// Company's share capital
CapitaleSociale string `xml:",omitempty"`
// Indication of whether the Company is in liquidation or not.
// Possible values: LS (in liquidation), LN (not in liquidation)
StatoLiquidazione string
}
type contatti struct {
Telefono string `xml:",omitempty"`
Email string `xml:",omitempty"`
}
func newCedentePrestatore(s *org.Party) *supplier {
ns := &supplier{
DatiAnagrafici: &datiAnagrafici{
IdFiscaleIVA: &taxID{
IdPaese: s.TaxID.Country.String(),
IdCodice: s.TaxID.Code.String(),
},
Anagrafica: newAnagrafica(s),
},
IscrizioneREA: newIscrizioneREA(s),
Contatti: newContatti(s),
}
if v, ok := s.Ext[it.ExtKeySDIFiscalRegime]; ok {
ns.DatiAnagrafici.RegimeFiscale = v.String()
} else {
ns.DatiAnagrafici.RegimeFiscale = "RF01"
}
if len(s.Addresses) > 0 {
ns.Sede = newAddress(s.Addresses[0])
}
return ns
}
func newCessionarioCommittente(c *org.Party) *customer {
if c == nil {
return nil
}
nc := new(customer)
if len(c.Addresses) > 0 {
nc.Sede = newAddress(c.Addresses[0])
}
da := &datiAnagrafici{
Anagrafica: newAnagrafica(c),
}
if c.TaxID != nil {
if isCodiceFiscale(c.TaxID) {
da.CodiceFiscale = c.TaxID.Code.String()
} else {
da.IdFiscaleIVA = customerFiscaleIVA(c.TaxID)
}
}
nc.DatiAnagrafici = da
return nc
}
func newAnagrafica(party *org.Party) *anagrafica {
if len(party.People) > 0 && party.TaxID.Type == it.TaxIdentityTypeIndividual {
name := party.People[0].Name
return &anagrafica{
Nome: name.Given,
Cognome: name.Surname,
Titolo: name.Prefix,
}
}
return &anagrafica{
Denominazione: party.Name,
}
}
func newContatti(party *org.Party) *contatti {
c := &contatti{}
if len(party.Emails) > 0 {
c.Email = party.Emails[0].Address
}
if len(party.Telephones) > 0 {
c.Telefono = party.Telephones[0].Number
}
return c
}
func customerFiscaleIVA(id *tax.Identity) *taxID {
idCodice := id.Code.String()
if idCodice == "" {
// Assume private individual
idCodice = nonITCitizenTaxCodeDefault
} else {
// Must be a company with a local tax ID
if !isEUCountry(id.Country) {
idCodice = nonEUBusinessTaxCodeDefault
}
}
return &taxID{
IdPaese: id.Country.String(),
IdCodice: idCodice,
}
}
func newIscrizioneREA(supplier *org.Party) *iscrizioneREA {
if supplier.Registration == nil {
return nil
}
capital := supplier.Registration.Capital
var capitalFormatted string
if capital == nil {
capitalFormatted = ""
} else {
capitalFormatted = capital.Rescale(2).String()
}
return &iscrizioneREA{
Ufficio: supplier.Registration.Office,
NumeroREA: supplier.Registration.Entry,
CapitaleSociale: capitalFormatted,
StatoLiquidazione: statoLiquidazioneDefault,
}
}
func isCodiceFiscale(taxID *tax.Identity) bool {
if taxID.Country != l10n.IT {
return false
}
return len(taxID.Code.String()) == 16
}