forked from rwestlund/quickbooks-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vendor.go
166 lines (138 loc) · 4.49 KB
/
vendor.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
package quickbooks
import (
"encoding/json"
"errors"
"strconv"
)
// Vendor describes a vendor.
type Vendor struct {
Id string `json:"Id,omitempty"`
SyncToken string `json:",omitempty"`
Title string `json:",omitempty"`
GivenName string `json:",omitempty"`
MiddleName string `json:",omitempty"`
Suffix string `json:",omitempty"`
FamilyName string `json:",omitempty"`
PrimaryEmailAddr EmailAddress `json:",omitempty"`
DisplayName string `json:",omitempty"`
// ContactInfo
APAccountRef ReferenceType `json:",omitempty"`
TermRef ReferenceType `json:",omitempty"`
GSTIN string `json:",omitempty"`
Fax TelephoneNumber `json:",omitempty"`
BusinessNumber string `json:",omitempty"`
CurrencyRef ReferenceType `json:",omitempty"`
HasTPAR bool `json:",omitempty"`
TaxReportingBasis string `json:",omitempty"`
Mobile TelephoneNumber `json:",omitempty"`
PrimaryPhone TelephoneNumber `json:",omitempty"`
Active bool `json:",omitempty"`
AlternatePhone TelephoneNumber `json:",omitempty"`
MetaData MetaData `json:",omitempty"`
Vendor1099 bool `json:",omitempty"`
BillRate json.Number `json:",omitempty"`
WebAddr *WebSiteAddress `json:",omitempty"`
CompanyName string `json:",omitempty"`
// VendorPaymentBankDetail
TaxIdentifier string `json:",omitempty"`
AcctNum string `json:",omitempty"`
GSTRegistrationType string `json:",omitempty"`
PrintOnCheckName string `json:",omitempty"`
BillAddr *PhysicalAddress `json:",omitempty"`
Balance json.Number `json:",omitempty"`
}
// CreateVendor creates the given Vendor on the QuickBooks server, returning
// the resulting Vendor object.
func (c *Client) CreateVendor(vendor *Vendor) (*Vendor, error) {
var resp struct {
Vendor Vendor
Time Date
}
if err := c.post("vendor", vendor, &resp, nil); err != nil {
return nil, err
}
return &resp.Vendor, nil
}
// FindVendors gets the full list of Vendors in the QuickBooks account.
func (c *Client) FindVendors() ([]Vendor, error) {
var resp struct {
QueryResponse struct {
Vendors []Vendor `json:"Vendor"`
MaxResults int
StartPosition int
TotalCount int
}
}
if err := c.query("SELECT COUNT(*) FROM Vendor", &resp); err != nil {
return nil, err
}
if resp.QueryResponse.TotalCount == 0 {
return nil, errors.New("no vendors could be found")
}
vendors := make([]Vendor, 0, resp.QueryResponse.TotalCount)
for i := 0; i < resp.QueryResponse.TotalCount; i += queryPageSize {
query := "SELECT * FROM Vendor ORDERBY Id STARTPOSITION " + strconv.Itoa(i+1) + " MAXRESULTS " + strconv.Itoa(queryPageSize)
if err := c.query(query, &resp); err != nil {
return nil, err
}
if resp.QueryResponse.Vendors == nil {
return nil, errors.New("no vendors could be found")
}
vendors = append(vendors, resp.QueryResponse.Vendors...)
}
return vendors, nil
}
// FindVendorById finds the vendor by the given id
func (c *Client) FindVendorById(id string) (*Vendor, error) {
var resp struct {
Vendor Vendor
Time Date
}
if err := c.get("vendor/"+id, &resp, nil); err != nil {
return nil, err
}
return &resp.Vendor, nil
}
// QueryVendors accepts an SQL query and returns all vendors found using it
func (c *Client) QueryVendors(query string) ([]Vendor, error) {
var resp struct {
QueryResponse struct {
Vendors []Vendor `json:"Vendor"`
StartPosition int
MaxResults int
}
}
if err := c.query(query, &resp); err != nil {
return nil, err
}
if resp.QueryResponse.Vendors == nil {
return nil, errors.New("could not find any vendors")
}
return resp.QueryResponse.Vendors, nil
}
// UpdateVendor updates the vendor
func (c *Client) UpdateVendor(vendor *Vendor) (*Vendor, error) {
if vendor.Id == "" {
return nil, errors.New("missing vendor id")
}
existingVendor, err := c.FindVendorById(vendor.Id)
if err != nil {
return nil, err
}
vendor.SyncToken = existingVendor.SyncToken
payload := struct {
*Vendor
Sparse bool `json:"sparse"`
}{
Vendor: vendor,
Sparse: true,
}
var vendorData struct {
Vendor Vendor
Time Date
}
if err = c.post("vendor", payload, &vendorData, nil); err != nil {
return nil, err
}
return &vendorData.Vendor, err
}