forked from rwestlund/quickbooks-go
-
Notifications
You must be signed in to change notification settings - Fork 1
/
account.go
198 lines (185 loc) · 5.5 KB
/
account.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
package quickbooks
import (
"bytes"
"encoding/json"
"net/http"
"net/url"
"strconv"
)
const (
BankAccountType = "Bank"
OtherCurrentAssetAccountType = "Other Current Asset"
FixedAssetAccountType = "Fixed Asset"
OtherAssetAccountType = "Other Asset"
AccountsReceivableAccountType = "Accounts Receivable"
EquityAccountType = "Equity"
ExpenseAccountType = "Expense"
OtherExpenseAccountType = "Other Expense"
CostOfGoodsSoldAccountType = "Cost of Goods Sold"
AccountsPayableAccountType = "Accounts Payable"
CreditCardAccountType = "Credit Card"
LongTermLiabilityAccountType = "Long Term Liability"
OtherCurrentLiabilityAccountType = "Other Current Liability"
IncomeAccountType = "Income"
OtherIncomeAccountType = "Other Income"
)
type Account struct {
ID string `json:"Id,omitempty"`
Name string `json:",omitempty"`
SyncToken string `json:",omitempty"`
AcctNum string `json:",omitempty"`
CurrencyRef ReferenceType `json:",omitempty"`
ParentRef ReferenceType `json:",omitempty"`
Description string `json:",omitempty"`
Active bool `json:",omitempty"`
MetaData MetaData `json:",omitempty"`
SubAccount bool `json:",omitempty"`
Classification string `json:",omitempty"`
FullyQualifiedName string `json:",omitempty"`
TxnLocationType string `json:",omitempty"`
AccountType string `json:",omitempty"`
CurrentBalanceWithSubAccounts json.Number `json:",omitempty"`
AccountAlias string `json:",omitempty"`
TaxCodeRef ReferenceType `json:",omitempty"`
AccountSubType string `json:",omitempty"`
CurrentBalance json.Number `json:",omitempty"`
}
// CreateAccount creates the account
func (c *Client) CreateAccount(account *Account) (*Account, error) {
var u, err = url.Parse(string(c.Endpoint))
if err != nil {
return nil, err
}
u.Path = "/v3/company/" + c.RealmID + "/account"
var v = url.Values{}
v.Add("minorversion", minorVersion)
u.RawQuery = v.Encode()
var j []byte
j, err = json.Marshal(account)
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 {
Account Account
Time Date
}
err = json.NewDecoder(res.Body).Decode(&r)
return &r.Account, err
}
// QueryAccount gets the account
func (c *Client) QueryAccount(selectStatement string) ([]Account, error) {
var r struct {
QueryResponse struct {
Account []Account
StartPosition int
MaxResults int
}
}
err := c.query(selectStatement, &r)
if err != nil {
return nil, err
}
if r.QueryResponse.Account == nil {
r.QueryResponse.Account = make([]Account, 0)
}
return r.QueryResponse.Account, nil
}
// GetAccounts gets the account
func (c *Client) GetAccounts(startpos int, pagesize int) ([]Account, error) {
q := "SELECT * FROM Account ORDERBY Id STARTPOSITION " +
strconv.Itoa(startpos) + " MAXRESULTS " + strconv.Itoa(pagesize)
return c.QueryAccount(q)
}
// GetAccountByID returns an account with a given ID.
func (c *Client) GetAccountByID(id string) (*Account, error) {
var u, err = url.Parse(string(c.Endpoint))
if err != nil {
return nil, err
}
u.Path = "/v3/company/" + c.RealmID + "/account/" + 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 {
Account Account
Time Date
}
err = json.NewDecoder(res.Body).Decode(&r)
return &r.Account, err
}
// UpdateAccount updates the account
func (c *Client) UpdateAccount(account *Account) (*Account, error) {
var u, err = url.Parse(string(c.Endpoint))
if err != nil {
return nil, err
}
u.Path = "/v3/company/" + c.RealmID + "/account"
var v = url.Values{}
v.Add("minorversion", minorVersion)
u.RawQuery = v.Encode()
var d = struct {
*Account
Sparse bool `json:"sparse"`
}{
Account: account,
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 {
Account Account
Time Date
}
err = json.NewDecoder(res.Body).Decode(&r)
return &r.Account, err
}