forked from rwestlund/quickbooks-go
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbill.go
183 lines (171 loc) · 4.44 KB
/
bill.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
package quickbooks
import (
"bytes"
"encoding/json"
"net/http"
"net/url"
"strconv"
)
type Bill struct {
ID string `json:"Id,omitempty"`
VendorRef ReferenceType `json:",omitempty"`
Line []Line
SyncToken string `json:",omitempty"`
CurrencyRef ReferenceType `json:",omitempty"`
TxnDate Date `json:",omitempty"`
APAccountRef ReferenceType `json:",omitempty"`
SalesTermRef ReferenceType `json:",omitempty"`
//LinkedTxn
//GlobalTaxCalculation
TotalAmt json.Number `json:",omitempty"`
TransactionLocationType string `json:",omitempty"`
DueDate Date `json:",omitempty"`
MetaData MetaData `json:",omitempty"`
DocNumber string
PrivateNote string `json:",omitempty"`
TxnTaxDetail TxnTaxDetail `json:",omitempty"`
ExchangeRate json.Number `json:",omitempty"`
DepartmentRef ReferenceType `json:",omitempty"`
IncludeInAnnualTPAR bool `json:",omitempty"`
HomeBalance json.Number `json:",omitempty"`
RecurDataRef ReferenceType `json:",omitempty"`
Balance json.Number `json:",omitempty"`
}
func (c *Client) CreateBill(bill *Bill) (*Bill, error) {
var u, err = url.Parse(string(c.Endpoint))
if err != nil {
return nil, err
}
u.Path = "/v3/company/" + c.RealmID + "/bill"
var v = url.Values{}
v.Add("minorversion", minorVersion)
u.RawQuery = v.Encode()
var j []byte
j, err = json.Marshal(bill)
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 {
Bill Bill
Time Date
}
err = json.NewDecoder(res.Body).Decode(&r)
return &r.Bill, err
}
// QueryBill gets the bill
func (c *Client) QueryBill(selectStatement string) ([]Bill, error) {
var r struct {
QueryResponse struct {
Bill []Bill
StartPosition int
MaxResults int
}
}
err := c.query(selectStatement, &r)
if err != nil {
return nil, err
}
if r.QueryResponse.Bill == nil {
r.QueryResponse.Bill = make([]Bill, 0)
}
return r.QueryResponse.Bill, nil
}
// GetBills gets the bills
func (c *Client) GetBills(startpos int, pagesize int) ([]Bill, error) {
q := "SELECT * FROM Bill ORDERBY Id STARTPOSITION " +
strconv.Itoa(startpos) + " MAXRESULTS " + strconv.Itoa(pagesize)
return c.QueryBill(q)
}
// GetBillByID returns a bill with a given ID.
func (c *Client) GetBillByID(id string) (*Bill, error) {
var u, err = url.Parse(string(c.Endpoint))
if err != nil {
return nil, err
}
u.Path = "/v3/company/" + c.RealmID + "/bill/" + id
var v = url.Values{}
v.Add("minorversion", minorVersion)
u.RawQuery = v.Encode()
var req *http.Request
req, err = http.NewRequest("GET", u.String(), nil)
if err != nil {
return nil, err
}
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 {
Bill Bill
Time Date
}
err = json.NewDecoder(res.Body).Decode(&r)
return &r.Bill, err
}
// UpdateBill updates the bill
func (c *Client) UpdateBill(bill *Bill) (*Bill, error) {
var u, err = url.Parse(string(c.Endpoint))
if err != nil {
return nil, err
}
u.Path = "/v3/company/" + c.RealmID + "/bill"
var v = url.Values{}
v.Add("minorversion", minorVersion)
u.RawQuery = v.Encode()
var d = struct {
*Bill
Sparse bool `json:"sparse"`
}{
Bill: bill,
Sparse: true,
}
var j []byte
j, err = json.Marshal(d)
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 {
Bill Bill
Time Date
}
err = json.NewDecoder(res.Body).Decode(&r)
return &r.Bill, err
}