forked from rwestlund/quickbooks-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
invoice.go
278 lines (255 loc) · 8.47 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
// Copyright (c) 2018, Randy Westlund. All rights reserved.
// This code is under the BSD-2-Clause license.
package quickbooks
import (
"bytes"
"encoding/json"
"net/http"
"net/url"
"strconv"
)
// Invoice represents a QuickBooks Invoice object.
type Invoice struct {
ID string `json:"Id,omitempty"`
SyncToken string `json:",omitempty"`
MetaData MetaData `json:",omitempty"`
//CustomField
DocNumber string `json:",omitempty"`
TxnDate Date `json:",omitempty"`
//DepartmentRef
PrivateNote string `json:",omitempty"`
//LinkedTxn
Line []Line
TxnTaxDetail TxnTaxDetail `json:",omitempty"`
CustomerRef ReferenceType
CustomerMemo MemoRef `json:",omitempty"`
BillAddr PhysicalAddress `json:",omitempty"`
ShipAddr PhysicalAddress `json:",omitempty"`
ClassRef ReferenceType `json:",omitempty"`
SalesTermRef ReferenceType `json:",omitempty"`
DueDate Date `json:",omitempty"`
//GlobalTaxCalculation
ShipMethodRef ReferenceType `json:",omitempty"`
ShipDate Date `json:",omitempty"`
TrackingNum string `json:",omitempty"`
TotalAmt json.Number `json:",omitempty"`
//CurrencyRef
ExchangeRate json.Number `json:",omitempty"`
HomeAmtTotal json.Number `json:",omitempty"`
HomeBalance json.Number `json:",omitempty"`
ApplyTaxAfterDiscount bool `json:",omitempty"`
PrintStatus string `json:",omitempty"`
EmailStatus string `json:",omitempty"`
BillEmail EmailAddress `json:",omitempty"`
BillEmailCC EmailAddress `json:"BillEmailCc,omitempty"`
BillEmailBCC EmailAddress `json:"BillEmailBcc,omitempty"`
//DeliveryInfo
Balance json.Number `json:",omitempty"`
TxnSource string `json:",omitempty"`
AllowOnlineCreditCardPayment bool `json:",omitempty"`
AllowOnlineACHPayment bool `json:",omitempty"`
Deposit json.Number `json:",omitempty"`
DepositToAccountRef ReferenceType `json:",omitempty"`
}
// TxnTaxDetail ...
type TxnTaxDetail struct {
TxnTaxCodeRef ReferenceType `json:",omitempty"`
TotalTax json.Number `json:",omitempty"`
TaxLine []Line `json:",omitempty"`
}
// AccountBasedExpenseLineDetail
type AccountBasedExpenseLineDetail struct {
AccountRef ReferenceType
TaxAmount json.Number `json:",omitempty"`
//TaxInclusiveAmt json.Number `json:",omitempty"`
//ClassRef ReferenceType `json:",omitempty"`
//TaxCodeRef ReferenceType `json:",omitempty"`
// MarkupInfo MarkupInfo `json:",omitempty"`
//BillableStatus BillableStatusEnum `json:",omitempty"`
//CustomerRef ReferenceType `json:",omitempty"`
}
// Line ...
type Line struct {
ID string `json:"Id,omitempty"`
LineNum int `json:",omitempty"`
Description string `json:",omitempty"`
Amount json.Number
DetailType string
AccountBasedExpenseLineDetail *AccountBasedExpenseLineDetail `json:",omitempty"`
SalesItemLineDetail *SalesItemLineDetail `json:",omitempty"`
DiscountLineDetail *DiscountLineDetail `json:",omitempty"`
TaxLineDetail *TaxLineDetail `json:",omitempty"`
}
// TaxLineDetail ...
type TaxLineDetail struct {
PercentBased bool `json:",omitempty"`
NetAmountTaxable json.Number `json:",omitempty"`
//TaxInclusiveAmount json.Number `json:",omitempty"`
//OverrideDeltaAmount
TaxPercent json.Number `json:",omitempty"`
TaxRateRef ReferenceType
}
// SalesItemLineDetail ...
type SalesItemLineDetail struct {
ItemRef *ReferenceType `json:",omitempty"`
ClassRef *ReferenceType `json:",omitempty"`
UnitPrice json.Number `json:",omitempty"`
//MarkupInfo
Qty json.Number `json:",omitempty"`
ItemAccountRef *ReferenceType `json:",omitempty"`
TaxCodeRef *ReferenceType `json:",omitempty"`
ServiceDate *Date `json:",omitempty"`
TaxInclusiveAmt json.Number `json:",omitempty"`
DiscountRate json.Number `json:",omitempty"`
DiscountAmt json.Number `json:",omitempty"`
}
// DiscountLineDetail ...
type DiscountLineDetail struct {
PercentBased bool
DiscountPercent json.Number `json:",omitempty"`
}
// FetchInvoices gets the full list of Invoices in the QuickBooks account.
func (c *Client) FetchInvoices() ([]Invoice, error) {
// See how many invoices there are.
var r struct {
QueryResponse struct {
TotalCount int
}
}
err := c.query("SELECT COUNT(*) FROM Invoice", &r)
if err != nil {
return nil, err
}
if r.QueryResponse.TotalCount == 0 {
return make([]Invoice, 0), nil
}
var invoices = make([]Invoice, 0, r.QueryResponse.TotalCount)
for i := 0; i < r.QueryResponse.TotalCount; i += queryPageSize {
var page, err = c.fetchInvoicePage(i + 1)
if err != nil {
return nil, err
}
invoices = append(invoices, page...)
}
return invoices, nil
}
// Fetch one page of results, because we can't get them all in one query.
func (c *Client) fetchInvoicePage(startpos int) ([]Invoice, error) {
var r struct {
QueryResponse struct {
Invoice []Invoice
StartPosition int
MaxResults int
}
}
q := "SELECT * FROM Invoice ORDERBY Id STARTPOSITION " +
strconv.Itoa(startpos) + " MAXRESULTS " + strconv.Itoa(queryPageSize)
err := c.query(q, &r)
if err != nil {
return nil, err
}
// Make sure we don't return nil if there are no invoices.
if r.QueryResponse.Invoice == nil {
r.QueryResponse.Invoice = make([]Invoice, 0)
}
return r.QueryResponse.Invoice, nil
}
// CreateInvoice creates the given Invoice on the QuickBooks server, returning
// the resulting Invoice object.
func (c *Client) CreateInvoice(inv *Invoice) (*Invoice, error) {
var u, err = url.Parse(string(c.Endpoint))
if err != nil {
return nil, err
}
u.Path = "/v3/company/" + c.RealmID + "/invoice"
var v = url.Values{}
v.Add("minorversion", minorVersion)
u.RawQuery = v.Encode()
var j []byte
j, err = json.Marshal(inv)
if err != nil {
return nil, err
}
var req *http.Request
req, err = http.NewRequest("POST", u.String(), bytes.NewBuffer(j))
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Accept", "application/json")
var res *http.Response
res, err = c.Client.Do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
if res.StatusCode != http.StatusOK {
return nil, parseFailure(res)
}
var r struct {
Invoice Invoice
Time Date
}
err = json.NewDecoder(res.Body).Decode(&r)
return &r.Invoice, err
}
// DeleteInvoice deletes the given Invoice by ID and sync token from the
// QuickBooks server.
func (c *Client) DeleteInvoice(id, syncToken string) error {
var u, err = url.Parse(string(c.Endpoint))
if err != nil {
return err
}
u.Path = "/v3/company/" + c.RealmID + "/invoice"
var v = url.Values{}
v.Add("minorversion", minorVersion)
v.Add("operation", "delete")
u.RawQuery = v.Encode()
var j []byte
j, err = json.Marshal(struct {
ID string `json:"Id"`
SyncToken string
}{
ID: id,
SyncToken: syncToken,
})
if err != nil {
return err
}
var req *http.Request
req, err = http.NewRequest("POST", u.String(), bytes.NewBuffer(j))
if err != nil {
return err
}
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Accept", "application/json")
var res *http.Response
res, err = c.Client.Do(req)
if err != nil {
return err
}
defer res.Body.Close()
//var b, _ = ioutil.ReadAll(res.Body)
//log.Println(string(b))
// If the invoice was already deleted, QuickBooks returns 400 :(
// The response looks like this:
// {"Fault":{"Error":[{"Message":"Object Not Found","Detail":"Object Not Found : Something you're trying to use has been made inactive. Check the fields with accounts, invoices, items, vendors or employees.","code":"610","element":""}],"type":"ValidationFault"},"time":"2018-03-20T20:15:59.571-07:00"}
// This is slightly horrifying and not documented in their API. When this
// happens we just return success; the goal of deleting it has been
// accomplished, just not by us.
if res.StatusCode == http.StatusBadRequest {
var r Failure
err = json.NewDecoder(res.Body).Decode(&r)
if err != nil {
return err
}
if r.Fault.Error[0].Message == "Object Not Found" {
return nil
}
}
if res.StatusCode != http.StatusOK {
return parseFailure(res)
}
// TODO they send something back, but is it useful?
return nil
}