-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvoice.go
537 lines (518 loc) · 20.2 KB
/
invoice.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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
package asaas
import (
"context"
"fmt"
"net/http"
)
type CreateInvoiceSettingRequest struct {
// Identificador único do serviço municipal.
MunicipalServiceId string `json:"municipalServiceId,omitempty"`
// Código de serviço municipal. (REQUIRED)
MunicipalServiceCode string `json:"municipalServiceCode,omitempty"`
// Nome do serviço municipal. Se não for informado, será utilizado o MunicipalServiceCode como nome para identificação.
MunicipalServiceName string `json:"municipalServiceName,omitempty"`
// Atualizar o valor da cobrança com os impostos da nota já descontados.
UpdatePayment bool `json:"updatePayment,omitempty"`
// Deduções. As deduções não alteram o valor total da nota fiscal, mas alteram a base de cálculo do ISS.
Deductions float64 `json:"deductions,omitempty"`
// Quando a nota fiscal será emitida. (REQUIRED)
EffectiveDatePeriod EffectiveDatePeriod `json:"effectiveDatePeriod,omitempty"`
// Emitir apenas para cobranças pagas.
ReceivedOnly bool `json:"receivedOnly,omitempty"`
// Quantidade de dias antes do vencimento da cobrança.
DaysBeforeDueDate int `json:"daysBeforeDueDate,omitempty"`
// Observações adicionais da nota fiscal.
Observations string `json:"observations,omitempty"`
// Impostos da nota fiscal.
Taxes InvoiceTaxesRequest `json:"taxes,omitempty"`
}
type ScheduleInvoiceRequest struct {
// ID da cobrança a ser antecipada (REQUIRED se Installment, Customer não for informado)
Payment string `json:"payment,omitempty"`
// ID do parcelamento a ser antecipado (REQUIRED se Payment, Customer não for informado)
Installment string `json:"installment,omitempty"`
// Identificador único do cliente no Asaas (REQUIRED se Payment, Installment não for informado)
Customer string `json:"customer,omitempty"`
// Descrição dos serviços da nota fiscal (REQUIRED)
ServiceDescription string `json:"serviceDescription,omitempty"`
// Observações adicionais da nota fiscal (REQUIRED)
Observations string `json:"observations,omitempty"`
// Identificador da nota fiscal no seu sistema
ExternalReference string `json:"externalReference,omitempty"`
// Valor (REQUIRED)
Value float64 `json:"value,omitempty"`
// Deduções. As deduções não alteram o valor total da nota fiscal, mas alteram a base de cálculo do ISS (REQUIRED)
Deductions float64 `json:"deductions,omitempty"`
// Data de emissão da nota fiscal (REQUIRED)
EffectiveDate Date `json:"effectiveDate,omitempty"`
// Identificador único do serviço municipal.
MunicipalServiceId string `json:"municipalServiceId,omitempty"`
// Código de serviço municipal
MunicipalServiceCode string `json:"municipalServiceCode,omitempty"`
// Nome do serviço municipal. Se não for informado, será utilizado o atributo MunicipalServiceCode como nome para identificação.
MunicipalServiceName string `json:"municipalServiceName,omitempty"`
// Atualizar o valor da cobrança com os impostos da nota já descontados.
UpdatePayment bool `json:"updatePayment,omitempty"`
// Impostos da nota fiscal (REQUIRED)
Taxes InvoiceTaxesRequest `json:"taxes,omitempty"`
}
type UpdateInvoiceRequest struct {
// Descrição dos serviços da nota fiscal
ServiceDescription string `json:"serviceDescription,omitempty"`
// Observações adicionais da nota fiscal
Observations string `json:"observations,omitempty"`
// Identificador da nota fiscal no seu sistema
ExternalReference *string `json:"externalReference,omitempty"`
// Valor
Value float64 `json:"value,omitempty"`
// Deduções. As deduções não alteram o valor total da nota fiscal, mas alteram a base de cálculo do ISS
Deductions *float64 `json:"deductions,omitempty"`
// Data de emissão da nota fiscal
EffectiveDate Date `json:"effectiveDate,omitempty"`
// Identificador único do serviço municipal.
MunicipalServiceId *string `json:"municipalServiceId,omitempty"`
// Código de serviço municipal
MunicipalServiceCode *string `json:"municipalServiceCode,omitempty"`
// Nome do serviço municipal. Se não for informado, será utilizado o atributo MunicipalServiceCode como nome para identificação.
MunicipalServiceName *string `json:"municipalServiceName,omitempty"`
// Atualizar o valor da cobrança com os impostos da nota já descontados.
UpdatePayment *bool `json:"updatePayment,omitempty"`
// Impostos da nota fiscal
Taxes *InvoiceTaxesRequest `json:"taxes,omitempty"`
}
type UpdateInvoiceSettingRequest struct {
// Deduções. As deduções não alteram o valor total da nota fiscal, mas alteram a base de cálculo do ISS.
Deductions *float64 `json:"deductions,omitempty"`
// Quando a nota fiscal será emitida.
EffectiveDatePeriod EffectiveDatePeriod `json:"effectiveDatePeriod,omitempty"`
// Emitir apenas para cobranças pagas.
ReceivedOnly *bool `json:"receivedOnly,omitempty"`
// Quantidade de dias antes do vencimento da cobrança.
DaysBeforeDueDate *int `json:"daysBeforeDueDate,omitempty"`
// Observações adicionais da nota fiscal.
Observations *string `json:"observations,omitempty"`
// Impostos da nota fiscal.
Taxes InvoiceTaxesRequest `json:"taxes,omitempty"`
}
type InvoiceTaxesRequest struct {
// Tomador da nota fiscal deve reter ISS ou não
RetainIss bool `json:"retainIss"`
// Alíquota ISS (REQUIRED)
Iss float64 `json:"iss"`
// Alíquota COFINS (REQUIRED)
Confins float64 `json:"cofins"`
// Alíquota CSLL (REQUIRED)
Csll float64 `json:"csll"`
// Alíquota INSS (REQUIRED)
Inss float64 `json:"inss"`
// Alíquota IR (REQUIRED)
Ir float64 `json:"ir"`
// Alíquota PIS (REQUIRED)
Pis float64 `json:"pis"`
}
type GetAllInvoicesRequest struct {
// Filtrar a partir de uma data de emissão
EffectiveDateGE Date `json:"effectiveDate[ge],omitempty"`
// Filtrar até uma data de emissão
EffectiveDateLE Date `json:"effectiveDate[le],omitempty"`
// Filtrar pela cobrança
Payment string `json:"payment,omitempty"`
// Filtrar pelo parcelamento
Installment string `json:"installment,omitempty"`
// Filtrar pelo identificador único do cliente
Customer string `json:"customer,omitempty"`
// Identificador da nota fiscal no seu sistema
ExternalReference string `json:"externalReference,omitempty"`
// Status da nota fiscal
Status InvoiceStatus `json:"status,omitempty"`
// Elemento inicial da lista
Offset int `json:"offset,omitempty"`
// Número de elementos da lista (max: 100)
Limit int `json:"limit,omitempty"`
}
type InvoiceSettingResponse struct {
MunicipalServiceId string `json:"municipalServiceId,omitempty"`
MunicipalServiceCode string `json:"municipalServiceCode,omitempty"`
MunicipalServiceName string `json:"municipalServiceName,omitempty"`
Deductions float64 `json:"deductions,omitempty"`
InvoiceCreationPeriod string `json:"invoiceCreationPeriod,omitempty"`
DaysBeforeDueDate int `json:"daysBeforeDueDate,omitempty"`
ReceivedOnly bool `json:"receivedOnly,omitempty"`
Observations string `json:"observations,omitempty"`
Taxes *InvoiceTaxesResponse `json:"taxes,omitempty"`
Errors []ErrorResponse `json:"errors,omitempty"`
}
type InvoiceResponse struct {
Id string `json:"id,omitempty"`
Payment string `json:"payment,omitempty"`
Installment string `json:"installment,omitempty"`
Customer string `json:"customer,omitempty"`
Status InvoiceStatus `json:"status,omitempty"`
Type string `json:"type,omitempty"`
StatusDescription string `json:"statusDescription,omitempty"`
ServiceDescription string `json:"serviceDescription,omitempty"`
PdfUrl string `json:"pdfUrl,omitempty"`
XmlUrl string `json:"xmlUrl,omitempty"`
RpsSerie string `json:"rpsSerie,omitempty"`
RpsNumber string `json:"rpsNumber,omitempty"`
Number string `json:"number,omitempty"`
ValidationCode string `json:"validationCode,omitempty"`
Value float64 `json:"value,omitempty"`
Deductions float64 `json:"deductions,omitempty"`
EffectiveDate Date `json:"effectiveDate,omitempty"`
Observations string `json:"observations,omitempty"`
EstimatedTaxesDescription string `json:"estimatedTaxesDescription,omitempty"`
ExternalReference string `json:"externalReference,omitempty"`
Taxes *InvoiceTaxesResponse `json:"taxes,omitempty"`
MunicipalServiceId string `json:"municipalServiceId,omitempty"`
MunicipalServiceCode string `json:"municipalServiceCode,omitempty"`
MunicipalServiceName string `json:"municipalServiceName,omitempty"`
Errors []ErrorResponse `json:"errors,omitempty"`
}
type InvoiceTaxesResponse struct {
RetainIss bool `json:"retainIss"`
Iss float64 `json:"iss"`
Confins float64 `json:"cofins"`
Csll float64 `json:"csll"`
Inss float64 `json:"inss"`
Ir float64 `json:"ir"`
Pis float64 `json:"pis"`
}
type invoice struct {
env Env
accessToken string
}
type Invoice interface {
// Schedule (Agendar nota fiscal)
//
// # Resposta: 200
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsSuccess() = true
//
// Possui os valores de resposta de sucesso segunda a documentação.
//
// # Resposta: 400/401/500
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsFailure() = true
//
// Para qualquer outra resposta inesperada da API, possuímos o campo InvoiceResponse.Errors preenchido com as informações
// de erro, sendo 400 retornado da API Asaas com as instruções de requisição conforme a documentação,
// diferente disso retornará uma mensagem padrão no index 0 do slice com campo ErrorResponse.Code retornando a
// descrição status http (Ex: "401 Unauthorized") e no campo ErrorResponse.Description retornará com o valor
// "response status code not expected".
//
// # Error
//
// InvoiceResponse = nil
//
// error = not nil
//
// Se o parâmetro de retorno error não estiver nil quer dizer que ocorreu um erro inesperado
// na lib go-asaas.
//
// Se isso acontecer por favor report o erro no repositório: https://github.com/GabrielHCataldo/go-asaas
//
// # DOCS
//
// Agendar nota fiscal: https://docs.asaas.com/reference/agendar-nota-fiscal
Schedule(ctx context.Context, body ScheduleInvoiceRequest) (*InvoiceResponse, error)
// AuthorizeById (Emitir uma nota fiscal)
//
// Para emitir uma nota fiscal específica é necessário que você tenha o ID que o Asaas retornou no momento
// da criação dela.
//
// # Resposta: 200
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsSuccess() = true
//
// Possui os valores de resposta de sucesso segunda a documentação.
//
// # Resposta: 404
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsNoContent() = true
//
// ID(s) informado no parâmetro não foi encontrado.
//
// # Resposta: 400/401/500
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsFailure() = true
//
// Para qualquer outra resposta inesperada da API, possuímos o campo InvoiceResponse.Errors preenchido com as informações
// de erro, sendo 400 retornado da API Asaas com as instruções de requisição conforme a documentação,
// diferente disso retornará uma mensagem padrão no index 0 do slice com campo ErrorResponse.Code retornando a
// descrição status http (Ex: "401 Unauthorized") e no campo ErrorResponse.Description retornará com o valor
// "response status code not expected".
//
// # Error
//
// InvoiceResponse = nil
//
// error = not nil
//
// Se o parâmetro de retorno error não estiver nil quer dizer que ocorreu um erro inesperado
// na lib go-asaas.
//
// Se isso acontecer por favor report o erro no repositório: https://github.com/GabrielHCataldo/go-asaas
//
// # DOCS
//
// Cancelar uma nota fiscal: https://docs.asaas.com/reference/emitir-uma-nota-fiscal
AuthorizeById(ctx context.Context, invoiceId string) (*InvoiceResponse, error)
// CancelById (Cancelar uma nota fiscal)
//
// Para cancelar uma nota fiscal específica é necessário que você tenha o ID que o Asaas retornou no momento
// da criação dela.
//
// # Resposta: 200
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsSuccess() = true
//
// Possui os valores de resposta de sucesso segunda a documentação.
//
// # Resposta: 404
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsNoContent() = true
//
// ID(s) informado no parâmetro não foi encontrado.
//
// # Resposta: 400/401/500
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsFailure() = true
//
// Para qualquer outra resposta inesperada da API, possuímos o campo InvoiceResponse.Errors preenchido com as informações
// de erro, sendo 400 retornado da API Asaas com as instruções de requisição conforme a documentação,
// diferente disso retornará uma mensagem padrão no index 0 do slice com campo ErrorResponse.Code retornando a
// descrição status http (Ex: "401 Unauthorized") e no campo ErrorResponse.Description retornará com o valor
// "response status code not expected".
//
// # Error
//
// InvoiceResponse = nil
//
// error = not nil
//
// Se o parâmetro de retorno error não estiver nil quer dizer que ocorreu um erro inesperado
// na lib go-asaas.
//
// Se isso acontecer por favor report o erro no repositório: https://github.com/GabrielHCataldo/go-asaas
//
// # DOCS
//
// Cancelar uma nota fiscal: https://docs.asaas.com/reference/cancelar-uma-nota-fiscal
CancelById(ctx context.Context, invoiceId string) (*InvoiceResponse, error)
// UpdateById (Atualizar nota fiscal)
//
// É possível atualizar notas fiscais que ainda não tenham sido emitidas, ou seja, estão
// com status InvoiceStatusScheduled ou InvoiceStatusError.
//
// # Resposta: 200
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsSuccess() = true
//
// Possui os valores de resposta de sucesso segunda a documentação.
//
// # Resposta: 404
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsNoContent() = true
//
// ID(s) informado no parâmetro não foi encontrado.
//
// # Resposta: 400/401/500
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsFailure() = true
//
// Para qualquer outra resposta inesperada da API, possuímos o campo InvoiceResponse.Errors preenchido com as informações
// de erro, sendo 400 retornado da API Asaas com as instruções de requisição conforme a documentação,
// diferente disso retornará uma mensagem padrão no index 0 do slice com campo ErrorResponse.Code retornando a
// descrição status http (Ex: "401 Unauthorized") e no campo ErrorResponse.Description retornará com o valor
// "response status code not expected".
//
// # Error
//
// InvoiceResponse = nil
//
// error = not nil
//
// Se o parâmetro de retorno error não estiver nil quer dizer que ocorreu um erro inesperado
// na lib go-asaas.
//
// Se isso acontecer por favor report o erro no repositório: https://github.com/GabrielHCataldo/go-asaas
//
// # DOCS
//
// Atualizar nota fiscal: https://docs.asaas.com/reference/atualizar-nota-fiscal
UpdateById(ctx context.Context, invoiceId string, body UpdateInvoiceRequest) (*InvoiceResponse, error)
// GetById (Recuperar uma nota fiscal)
//
// # Resposta: 200
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsSuccess() = true
//
// Possui os valores de resposta de sucesso segunda a documentação.
//
// # Resposta: 404
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsNoContent() = true
//
// ID(s) informado no parâmetro não foi encontrado.
//
// # Resposta: 401/500
//
// InvoiceResponse = not nil
//
// Error = nil
//
// InvoiceResponse.IsFailure() = true
//
// Para qualquer outra resposta inesperada da API, possuímos o campo InvoiceResponse.Errors preenchido com as informações
// de erro, o index 0 do slice com campo ErrorResponse.Code retornando a descrição
// status http (Ex: "401 Unauthorized") e no campo ErrorResponse.Description retornará com o valor
// "response status code not expected".
//
// # Error
//
// InvoiceResponse = nil
//
// error = not nil
//
// Se o parâmetro de retorno error não estiver nil quer dizer que ocorreu um erro inesperado
// na lib go-asaas.
//
// Se isso acontecer por favor report o erro no repositório: https://github.com/GabrielHCataldo/go-asaas
//
// # DOCS
//
// Recuperar uma nota fiscal: https://docs.asaas.com/reference/recuperar-uma-nota-fiscal
GetById(ctx context.Context, invoiceId string) (*InvoiceResponse, error)
// GetAll (Listar notas fiscais)
//
// Diferente da recuperação de uma nota fiscal específica, este método retorna uma lista paginada com todas as notas
// fiscais para os filtros informados.
//
// # Resposta: 200
//
// Pageable(InvoiceResponse) = not nil
//
// Error = nil
//
// Se Pageable.IsSuccess() for true quer dizer que retornaram os dados conforme a documentação.
// Se Pageable.IsNoContent() for true quer dizer que retornou os dados vazio.
//
// Error = nil
//
// Pageable.IsNoContent() = true
//
// Pageable.Data retornou vazio.
//
// # Resposta: 401/500
//
// Pageable(InvoiceResponse) = not nil
//
// Error = nil
//
// Pageable.IsFailure() = true
//
// Para qualquer outra resposta inesperada da API, possuímos o campo Pageable.Errors preenchido com
// as informações de erro, o index 0 do slice com campo ErrorResponse.Code retornando a descrição
// status http (Ex: "401 Unauthorized") e no campo ErrorResponse.Description retornará com o valor
// "response status code not expected".
//
// # Error
//
// Pageable(InvoiceResponse) = nil
//
// error = not nil
//
// Se o parâmetro de retorno error não estiver nil quer dizer que ocorreu um erro inesperado
// na lib go-asaas.
//
// Se isso acontecer por favor report o erro no repositório: https://github.com/GabrielHCataldo/go-asaas
//
// # DOCS
//
// Listar notas fiscais: https://docs.asaas.com/reference/listar-notas-fiscais
GetAll(ctx context.Context, filter GetAllInvoicesRequest) (*Pageable[InvoiceResponse], error)
}
func NewInvoice(env Env, accessToken string) Invoice {
logWarning("Invoice service running on", env.String())
return invoice{
env: env,
accessToken: accessToken,
}
}
func (i invoice) Schedule(ctx context.Context, body ScheduleInvoiceRequest) (*InvoiceResponse, error) {
req := NewRequest[InvoiceResponse](ctx, i.env, i.accessToken)
return req.make(http.MethodPost, "/v3/invoices", body)
}
func (i invoice) AuthorizeById(ctx context.Context, invoiceId string) (*InvoiceResponse, error) {
req := NewRequest[InvoiceResponse](ctx, i.env, i.accessToken)
return req.make(http.MethodPost, fmt.Sprintf("/v3/invoices/%s/authorize", invoiceId), nil)
}
func (i invoice) CancelById(ctx context.Context, invoiceId string) (*InvoiceResponse, error) {
req := NewRequest[InvoiceResponse](ctx, i.env, i.accessToken)
return req.make(http.MethodPost, fmt.Sprintf("/v3/invoices/%s/cancel", invoiceId), nil)
}
func (i invoice) UpdateById(ctx context.Context, invoiceId string, body UpdateInvoiceRequest) (*InvoiceResponse, error) {
req := NewRequest[InvoiceResponse](ctx, i.env, i.accessToken)
return req.make(http.MethodPost, fmt.Sprintf("/v3/invoices/%s", invoiceId), body)
}
func (i invoice) GetById(ctx context.Context, invoiceId string) (*InvoiceResponse, error) {
req := NewRequest[InvoiceResponse](ctx, i.env, i.accessToken)
return req.make(http.MethodGet, fmt.Sprintf("/v3/invoices/%s", invoiceId), nil)
}
func (i invoice) GetAll(ctx context.Context, filter GetAllInvoicesRequest) (*Pageable[InvoiceResponse], error) {
req := NewRequest[Pageable[InvoiceResponse]](ctx, i.env, i.accessToken)
return req.make(http.MethodGet, "/v3/invoices/", filter)
}