xeroizer 0.1.3 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +47 -1
- data/VERSION +1 -1
- data/lib/xeroizer.rb +2 -0
- data/lib/xeroizer/application_http_proxy.rb +30 -0
- data/lib/xeroizer/generic_application.rb +10 -0
- data/lib/xeroizer/record/application_helper.rb +10 -0
- data/lib/xeroizer/record/base_model.rb +7 -30
- data/lib/xeroizer/record/base_model_http_proxy.rb +3 -19
- data/lib/xeroizer/report/base.rb +43 -0
- data/lib/xeroizer/report/cell.rb +32 -0
- data/lib/xeroizer/report/cell_xml_helper.rb +71 -0
- data/lib/xeroizer/report/factory.rb +43 -0
- data/lib/xeroizer/report/row/header.rb +7 -0
- data/lib/xeroizer/report/row/row.rb +43 -0
- data/lib/xeroizer/report/row/section.rb +10 -0
- data/lib/xeroizer/report/row/summary.rb +9 -0
- data/lib/xeroizer/report/row/xml_helper.rb +77 -0
- data/lib/xeroizer/report/xml_helper.rb +58 -0
- data/lib/xeroizer/response.rb +38 -0
- data/test/stub_responses/reports/trial_balance.xml +1435 -0
- data/test/test_helper.rb +8 -0
- data/test/unit/record_definition_test.rb +27 -0
- data/test/unit/report_definition_test.rb +26 -0
- data/test/unit/report_test.rb +145 -0
- data/xeroizer.gemspec +21 -3
- metadata +23 -5
@@ -0,0 +1,77 @@
|
|
1
|
+
module Xeroizer
|
2
|
+
module Report
|
3
|
+
module RowXmlHelper
|
4
|
+
|
5
|
+
def self.included(base)
|
6
|
+
base.extend(ClassMethods)
|
7
|
+
base.send :include, InstanceMethods
|
8
|
+
end
|
9
|
+
|
10
|
+
module ClassMethods
|
11
|
+
|
12
|
+
public
|
13
|
+
|
14
|
+
def build_from_node(node, report, parent = nil)
|
15
|
+
row_type = node.xpath('RowType').first.text
|
16
|
+
row = nil
|
17
|
+
case row_type
|
18
|
+
when 'Header'
|
19
|
+
row = HeaderRow.new(report);
|
20
|
+
parent.header = row if parent
|
21
|
+
report.header ||= row
|
22
|
+
|
23
|
+
when 'Section'
|
24
|
+
row = SectionRow.new(report)
|
25
|
+
row.header = report.header
|
26
|
+
report.sections << row
|
27
|
+
|
28
|
+
when 'SummaryRow'
|
29
|
+
row = SummaryRow.new(report);
|
30
|
+
row.header = report.header
|
31
|
+
if parent
|
32
|
+
parent.summary = row
|
33
|
+
|
34
|
+
# Also add this summary row to the report if the section
|
35
|
+
# title is blank and the report doesn't already have one.
|
36
|
+
if parent.title.to_s == '' && report.summary.nil?
|
37
|
+
report.summary = row
|
38
|
+
end
|
39
|
+
else
|
40
|
+
report.summary = row
|
41
|
+
end
|
42
|
+
|
43
|
+
else
|
44
|
+
row = Row.new(report)
|
45
|
+
row.header = report.header
|
46
|
+
|
47
|
+
end
|
48
|
+
row.parent = parent
|
49
|
+
|
50
|
+
node.elements.each do | element |
|
51
|
+
case element.name.to_s
|
52
|
+
when 'RowType' then row.type = element.text
|
53
|
+
when 'Title' then row.title = element.text
|
54
|
+
when 'Rows'
|
55
|
+
element.elements.each do | row_node |
|
56
|
+
row.rows << Row.build_from_node(row_node, report, row)
|
57
|
+
end
|
58
|
+
|
59
|
+
when 'Cells'
|
60
|
+
element.elements.each do | cell_node |
|
61
|
+
row.cells << Cell.build_from_node(cell_node)
|
62
|
+
end
|
63
|
+
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
row
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
71
|
+
|
72
|
+
module InstanceMethods
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
module Xeroizer
|
2
|
+
module Report
|
3
|
+
module XmlHelper
|
4
|
+
|
5
|
+
def self.included(base)
|
6
|
+
base.extend(ClassMethods)
|
7
|
+
base.send :include, InstanceMethods
|
8
|
+
end
|
9
|
+
|
10
|
+
module ClassMethods
|
11
|
+
|
12
|
+
public
|
13
|
+
|
14
|
+
def build_from_node(node, factory)
|
15
|
+
report = new(factory)
|
16
|
+
|
17
|
+
extract_report_details(report, node)
|
18
|
+
|
19
|
+
rows = node.xpath("Rows/Row")
|
20
|
+
extract_rows(report, rows) if rows && rows.size > 0
|
21
|
+
|
22
|
+
report
|
23
|
+
end
|
24
|
+
|
25
|
+
protected
|
26
|
+
|
27
|
+
# Extract header details for the report response.
|
28
|
+
def extract_report_details(report, node)
|
29
|
+
node.elements.each do | element |
|
30
|
+
case element.name.to_s
|
31
|
+
when 'ReportID' then report.id = element.text
|
32
|
+
when 'ReportName' then report.name = element.text
|
33
|
+
when 'ReportType' then report.type = element.text
|
34
|
+
when 'ReportDate' then report.date = Date.parse(element.text)
|
35
|
+
when 'UpdatedDateUTC' then report.updated_at = Time.parse(element.text)
|
36
|
+
when 'ReportTitles'
|
37
|
+
element.elements.each do | title_element |
|
38
|
+
report.titles << title_element.text
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
# Extract the report rows
|
45
|
+
def extract_rows(report, rows)
|
46
|
+
rows.each do | row_node |
|
47
|
+
report.rows << Row.build_from_node(row_node, report)
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
|
53
|
+
module InstanceMethods
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
data/lib/xeroizer/response.rb
CHANGED
@@ -3,8 +3,46 @@ module Xeroizer
|
|
3
3
|
|
4
4
|
attr_accessor :id, :status, :errors, :provider, :date_time, :response_items, :request_params, :request_xml, :response_xml
|
5
5
|
|
6
|
+
class << self
|
7
|
+
|
8
|
+
# Parse the response retreived during any request.
|
9
|
+
def parse(raw_response, request = {}, options = {}, &block)
|
10
|
+
response = Xeroizer::Response.new
|
11
|
+
response.response_xml = raw_response
|
12
|
+
|
13
|
+
doc = Nokogiri::XML(raw_response) { | cfg | cfg.noblanks }
|
14
|
+
|
15
|
+
# check for responses we don't understand
|
16
|
+
raise Xeroizer::UnparseableResponse.new(doc.root.name) unless doc.root.name == 'Response'
|
17
|
+
|
18
|
+
doc.root.elements.each do | element |
|
19
|
+
|
20
|
+
# Text element
|
21
|
+
if element.children && element.children.size == 1 && element.children.first.text?
|
22
|
+
case element.name
|
23
|
+
when 'Id' then response.id = element.text
|
24
|
+
when 'Status' then response.status = element.text
|
25
|
+
when 'ProviderName' then response.provider = element.text
|
26
|
+
when 'DateTimeUTC' then response.date_time = Time.parse(element.text)
|
27
|
+
end
|
28
|
+
|
29
|
+
# Records in response
|
30
|
+
elsif element.children && element.children.size > 0
|
31
|
+
yield(response, element.children, element.children.first.name)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
response.response_items
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
|
6
40
|
public
|
7
41
|
|
42
|
+
def initialize
|
43
|
+
@response_items = []
|
44
|
+
end
|
45
|
+
|
8
46
|
def success?
|
9
47
|
status == 'OK'
|
10
48
|
end
|
@@ -0,0 +1,1435 @@
|
|
1
|
+
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
2
|
+
<Id>607aff30-70a0-496f-a143-2e01dd8cd56a</Id>
|
3
|
+
<Status>OK</Status>
|
4
|
+
<ProviderName>Test App 2</ProviderName>
|
5
|
+
<DateTimeUTC>2011-03-23T00:29:12.6021453Z</DateTimeUTC>
|
6
|
+
<Reports>
|
7
|
+
<Report>
|
8
|
+
<ReportID>TrialBalance</ReportID>
|
9
|
+
<ReportName>Trial Balance</ReportName>
|
10
|
+
<ReportType>TrialBalance</ReportType>
|
11
|
+
<ReportTitles>
|
12
|
+
<ReportTitle>Trial Balance</ReportTitle>
|
13
|
+
<ReportTitle>Demo Company (AU)</ReportTitle>
|
14
|
+
<ReportTitle>As at 23 March 2011</ReportTitle>
|
15
|
+
</ReportTitles>
|
16
|
+
<ReportDate>23 March 2011</ReportDate>
|
17
|
+
<UpdatedDateUTC>2011-03-23T00:29:12.6021453Z</UpdatedDateUTC>
|
18
|
+
<Rows>
|
19
|
+
<Row>
|
20
|
+
<RowType>Header</RowType>
|
21
|
+
<Cells>
|
22
|
+
<Cell>
|
23
|
+
<Value>Account</Value>
|
24
|
+
</Cell>
|
25
|
+
<Cell>
|
26
|
+
<Value>Debit</Value>
|
27
|
+
</Cell>
|
28
|
+
<Cell>
|
29
|
+
<Value>Credit</Value>
|
30
|
+
</Cell>
|
31
|
+
<Cell>
|
32
|
+
<Value>YTD Debit</Value>
|
33
|
+
</Cell>
|
34
|
+
<Cell>
|
35
|
+
<Value>YTD Credit</Value>
|
36
|
+
</Cell>
|
37
|
+
</Cells>
|
38
|
+
</Row>
|
39
|
+
<Row>
|
40
|
+
<RowType>Section</RowType>
|
41
|
+
<Title>Revenue</Title>
|
42
|
+
<Rows>
|
43
|
+
<Row>
|
44
|
+
<RowType>Row</RowType>
|
45
|
+
<Cells>
|
46
|
+
<Cell>
|
47
|
+
<Value>Interest Income (270)</Value>
|
48
|
+
<Attributes>
|
49
|
+
<Attribute>
|
50
|
+
<Value>1335b8b2-4d63-4af8-937f-04087ae2e36e</Value>
|
51
|
+
<Id>account</Id>
|
52
|
+
</Attribute>
|
53
|
+
</Attributes>
|
54
|
+
</Cell>
|
55
|
+
<Cell>
|
56
|
+
<Attributes>
|
57
|
+
<Attribute>
|
58
|
+
<Value>1335b8b2-4d63-4af8-937f-04087ae2e36e</Value>
|
59
|
+
<Id>account</Id>
|
60
|
+
</Attribute>
|
61
|
+
</Attributes>
|
62
|
+
</Cell>
|
63
|
+
<Cell>
|
64
|
+
<Value>97.05</Value>
|
65
|
+
<Attributes>
|
66
|
+
<Attribute>
|
67
|
+
<Value>1335b8b2-4d63-4af8-937f-04087ae2e36e</Value>
|
68
|
+
<Id>account</Id>
|
69
|
+
</Attribute>
|
70
|
+
</Attributes>
|
71
|
+
</Cell>
|
72
|
+
<Cell>
|
73
|
+
<Attributes>
|
74
|
+
<Attribute>
|
75
|
+
<Value>1335b8b2-4d63-4af8-937f-04087ae2e36e</Value>
|
76
|
+
<Id>account</Id>
|
77
|
+
</Attribute>
|
78
|
+
</Attributes>
|
79
|
+
</Cell>
|
80
|
+
<Cell>
|
81
|
+
<Value>287.48</Value>
|
82
|
+
<Attributes>
|
83
|
+
<Attribute>
|
84
|
+
<Value>1335b8b2-4d63-4af8-937f-04087ae2e36e</Value>
|
85
|
+
<Id>account</Id>
|
86
|
+
</Attribute>
|
87
|
+
</Attributes>
|
88
|
+
</Cell>
|
89
|
+
</Cells>
|
90
|
+
</Row>
|
91
|
+
<Row>
|
92
|
+
<RowType>Row</RowType>
|
93
|
+
<Cells>
|
94
|
+
<Cell>
|
95
|
+
<Value>Sales (200)</Value>
|
96
|
+
<Attributes>
|
97
|
+
<Attribute>
|
98
|
+
<Value>e2bacdc6-2006-43c2-a5da-3c0e5f43b452</Value>
|
99
|
+
<Id>account</Id>
|
100
|
+
</Attribute>
|
101
|
+
</Attributes>
|
102
|
+
</Cell>
|
103
|
+
<Cell>
|
104
|
+
<Attributes>
|
105
|
+
<Attribute>
|
106
|
+
<Value>e2bacdc6-2006-43c2-a5da-3c0e5f43b452</Value>
|
107
|
+
<Id>account</Id>
|
108
|
+
</Attribute>
|
109
|
+
</Attributes>
|
110
|
+
</Cell>
|
111
|
+
<Cell>
|
112
|
+
<Value>7783.34</Value>
|
113
|
+
<Attributes>
|
114
|
+
<Attribute>
|
115
|
+
<Value>e2bacdc6-2006-43c2-a5da-3c0e5f43b452</Value>
|
116
|
+
<Id>account</Id>
|
117
|
+
</Attribute>
|
118
|
+
</Attributes>
|
119
|
+
</Cell>
|
120
|
+
<Cell>
|
121
|
+
<Attributes>
|
122
|
+
<Attribute>
|
123
|
+
<Value>e2bacdc6-2006-43c2-a5da-3c0e5f43b452</Value>
|
124
|
+
<Id>account</Id>
|
125
|
+
</Attribute>
|
126
|
+
</Attributes>
|
127
|
+
</Cell>
|
128
|
+
<Cell>
|
129
|
+
<Value>40214.34</Value>
|
130
|
+
<Attributes>
|
131
|
+
<Attribute>
|
132
|
+
<Value>e2bacdc6-2006-43c2-a5da-3c0e5f43b452</Value>
|
133
|
+
<Id>account</Id>
|
134
|
+
</Attribute>
|
135
|
+
</Attributes>
|
136
|
+
</Cell>
|
137
|
+
</Cells>
|
138
|
+
</Row>
|
139
|
+
</Rows>
|
140
|
+
</Row>
|
141
|
+
<Row>
|
142
|
+
<RowType>Section</RowType>
|
143
|
+
<Title>Expenses</Title>
|
144
|
+
<Rows>
|
145
|
+
<Row>
|
146
|
+
<RowType>Row</RowType>
|
147
|
+
<Cells>
|
148
|
+
<Cell>
|
149
|
+
<Value>Advertising (400)</Value>
|
150
|
+
<Attributes>
|
151
|
+
<Attribute>
|
152
|
+
<Value>d392fe47-c99d-499e-a200-46709dd6b6e7</Value>
|
153
|
+
<Id>account</Id>
|
154
|
+
</Attribute>
|
155
|
+
</Attributes>
|
156
|
+
</Cell>
|
157
|
+
<Cell>
|
158
|
+
<Value>2272.73</Value>
|
159
|
+
<Attributes>
|
160
|
+
<Attribute>
|
161
|
+
<Value>d392fe47-c99d-499e-a200-46709dd6b6e7</Value>
|
162
|
+
<Id>account</Id>
|
163
|
+
</Attribute>
|
164
|
+
</Attributes>
|
165
|
+
</Cell>
|
166
|
+
<Cell>
|
167
|
+
<Attributes>
|
168
|
+
<Attribute>
|
169
|
+
<Value>d392fe47-c99d-499e-a200-46709dd6b6e7</Value>
|
170
|
+
<Id>account</Id>
|
171
|
+
</Attribute>
|
172
|
+
</Attributes>
|
173
|
+
</Cell>
|
174
|
+
<Cell>
|
175
|
+
<Value>4102.91</Value>
|
176
|
+
<Attributes>
|
177
|
+
<Attribute>
|
178
|
+
<Value>d392fe47-c99d-499e-a200-46709dd6b6e7</Value>
|
179
|
+
<Id>account</Id>
|
180
|
+
</Attribute>
|
181
|
+
</Attributes>
|
182
|
+
</Cell>
|
183
|
+
<Cell>
|
184
|
+
<Attributes>
|
185
|
+
<Attribute>
|
186
|
+
<Value>d392fe47-c99d-499e-a200-46709dd6b6e7</Value>
|
187
|
+
<Id>account</Id>
|
188
|
+
</Attribute>
|
189
|
+
</Attributes>
|
190
|
+
</Cell>
|
191
|
+
</Cells>
|
192
|
+
</Row>
|
193
|
+
<Row>
|
194
|
+
<RowType>Row</RowType>
|
195
|
+
<Cells>
|
196
|
+
<Cell>
|
197
|
+
<Value>Bank Fees (404)</Value>
|
198
|
+
<Attributes>
|
199
|
+
<Attribute>
|
200
|
+
<Value>959af5f4-9925-44e8-b283-7ddf4b427238</Value>
|
201
|
+
<Id>account</Id>
|
202
|
+
</Attribute>
|
203
|
+
</Attributes>
|
204
|
+
</Cell>
|
205
|
+
<Cell>
|
206
|
+
<Value>300.00</Value>
|
207
|
+
<Attributes>
|
208
|
+
<Attribute>
|
209
|
+
<Value>959af5f4-9925-44e8-b283-7ddf4b427238</Value>
|
210
|
+
<Id>account</Id>
|
211
|
+
</Attribute>
|
212
|
+
</Attributes>
|
213
|
+
</Cell>
|
214
|
+
<Cell>
|
215
|
+
<Attributes>
|
216
|
+
<Attribute>
|
217
|
+
<Value>959af5f4-9925-44e8-b283-7ddf4b427238</Value>
|
218
|
+
<Id>account</Id>
|
219
|
+
</Attribute>
|
220
|
+
</Attributes>
|
221
|
+
</Cell>
|
222
|
+
<Cell>
|
223
|
+
<Value>331.50</Value>
|
224
|
+
<Attributes>
|
225
|
+
<Attribute>
|
226
|
+
<Value>959af5f4-9925-44e8-b283-7ddf4b427238</Value>
|
227
|
+
<Id>account</Id>
|
228
|
+
</Attribute>
|
229
|
+
</Attributes>
|
230
|
+
</Cell>
|
231
|
+
<Cell>
|
232
|
+
<Attributes>
|
233
|
+
<Attribute>
|
234
|
+
<Value>959af5f4-9925-44e8-b283-7ddf4b427238</Value>
|
235
|
+
<Id>account</Id>
|
236
|
+
</Attribute>
|
237
|
+
</Attributes>
|
238
|
+
</Cell>
|
239
|
+
</Cells>
|
240
|
+
</Row>
|
241
|
+
<Row>
|
242
|
+
<RowType>Row</RowType>
|
243
|
+
<Cells>
|
244
|
+
<Cell>
|
245
|
+
<Value>Cleaning (408)</Value>
|
246
|
+
<Attributes>
|
247
|
+
<Attribute>
|
248
|
+
<Value>ff09eac3-5b17-44fb-9eea-e2e9375e91b4</Value>
|
249
|
+
<Id>account</Id>
|
250
|
+
</Attribute>
|
251
|
+
</Attributes>
|
252
|
+
</Cell>
|
253
|
+
<Cell>
|
254
|
+
<Value>155.00</Value>
|
255
|
+
<Attributes>
|
256
|
+
<Attribute>
|
257
|
+
<Value>ff09eac3-5b17-44fb-9eea-e2e9375e91b4</Value>
|
258
|
+
<Id>account</Id>
|
259
|
+
</Attribute>
|
260
|
+
</Attributes>
|
261
|
+
</Cell>
|
262
|
+
<Cell>
|
263
|
+
<Attributes>
|
264
|
+
<Attribute>
|
265
|
+
<Value>ff09eac3-5b17-44fb-9eea-e2e9375e91b4</Value>
|
266
|
+
<Id>account</Id>
|
267
|
+
</Attribute>
|
268
|
+
</Attributes>
|
269
|
+
</Cell>
|
270
|
+
<Cell>
|
271
|
+
<Value>465.00</Value>
|
272
|
+
<Attributes>
|
273
|
+
<Attribute>
|
274
|
+
<Value>ff09eac3-5b17-44fb-9eea-e2e9375e91b4</Value>
|
275
|
+
<Id>account</Id>
|
276
|
+
</Attribute>
|
277
|
+
</Attributes>
|
278
|
+
</Cell>
|
279
|
+
<Cell>
|
280
|
+
<Attributes>
|
281
|
+
<Attribute>
|
282
|
+
<Value>ff09eac3-5b17-44fb-9eea-e2e9375e91b4</Value>
|
283
|
+
<Id>account</Id>
|
284
|
+
</Attribute>
|
285
|
+
</Attributes>
|
286
|
+
</Cell>
|
287
|
+
</Cells>
|
288
|
+
</Row>
|
289
|
+
<Row>
|
290
|
+
<RowType>Row</RowType>
|
291
|
+
<Cells>
|
292
|
+
<Cell>
|
293
|
+
<Value>Consulting & Accounting (412)</Value>
|
294
|
+
<Attributes>
|
295
|
+
<Attribute>
|
296
|
+
<Value>6db51cfa-0326-4e63-a743-c78c4d99aba4</Value>
|
297
|
+
<Id>account</Id>
|
298
|
+
</Attribute>
|
299
|
+
</Attributes>
|
300
|
+
</Cell>
|
301
|
+
<Cell>
|
302
|
+
<Value>49.00</Value>
|
303
|
+
<Attributes>
|
304
|
+
<Attribute>
|
305
|
+
<Value>6db51cfa-0326-4e63-a743-c78c4d99aba4</Value>
|
306
|
+
<Id>account</Id>
|
307
|
+
</Attribute>
|
308
|
+
</Attributes>
|
309
|
+
</Cell>
|
310
|
+
<Cell>
|
311
|
+
<Attributes>
|
312
|
+
<Attribute>
|
313
|
+
<Value>6db51cfa-0326-4e63-a743-c78c4d99aba4</Value>
|
314
|
+
<Id>account</Id>
|
315
|
+
</Attribute>
|
316
|
+
</Attributes>
|
317
|
+
</Cell>
|
318
|
+
<Cell>
|
319
|
+
<Value>98.00</Value>
|
320
|
+
<Attributes>
|
321
|
+
<Attribute>
|
322
|
+
<Value>6db51cfa-0326-4e63-a743-c78c4d99aba4</Value>
|
323
|
+
<Id>account</Id>
|
324
|
+
</Attribute>
|
325
|
+
</Attributes>
|
326
|
+
</Cell>
|
327
|
+
<Cell>
|
328
|
+
<Attributes>
|
329
|
+
<Attribute>
|
330
|
+
<Value>6db51cfa-0326-4e63-a743-c78c4d99aba4</Value>
|
331
|
+
<Id>account</Id>
|
332
|
+
</Attribute>
|
333
|
+
</Attributes>
|
334
|
+
</Cell>
|
335
|
+
</Cells>
|
336
|
+
</Row>
|
337
|
+
<Row>
|
338
|
+
<RowType>Row</RowType>
|
339
|
+
<Cells>
|
340
|
+
<Cell>
|
341
|
+
<Value>Entertainment (420)</Value>
|
342
|
+
<Attributes>
|
343
|
+
<Attribute>
|
344
|
+
<Value>18e27517-81e0-437c-bc21-fbba8e30d6bb</Value>
|
345
|
+
<Id>account</Id>
|
346
|
+
</Attribute>
|
347
|
+
</Attributes>
|
348
|
+
</Cell>
|
349
|
+
<Cell>
|
350
|
+
<Value>138.71</Value>
|
351
|
+
<Attributes>
|
352
|
+
<Attribute>
|
353
|
+
<Value>18e27517-81e0-437c-bc21-fbba8e30d6bb</Value>
|
354
|
+
<Id>account</Id>
|
355
|
+
</Attribute>
|
356
|
+
</Attributes>
|
357
|
+
</Cell>
|
358
|
+
<Cell>
|
359
|
+
<Attributes>
|
360
|
+
<Attribute>
|
361
|
+
<Value>18e27517-81e0-437c-bc21-fbba8e30d6bb</Value>
|
362
|
+
<Id>account</Id>
|
363
|
+
</Attribute>
|
364
|
+
</Attributes>
|
365
|
+
</Cell>
|
366
|
+
<Cell>
|
367
|
+
<Value>415.91</Value>
|
368
|
+
<Attributes>
|
369
|
+
<Attribute>
|
370
|
+
<Value>18e27517-81e0-437c-bc21-fbba8e30d6bb</Value>
|
371
|
+
<Id>account</Id>
|
372
|
+
</Attribute>
|
373
|
+
</Attributes>
|
374
|
+
</Cell>
|
375
|
+
<Cell>
|
376
|
+
<Attributes>
|
377
|
+
<Attribute>
|
378
|
+
<Value>18e27517-81e0-437c-bc21-fbba8e30d6bb</Value>
|
379
|
+
<Id>account</Id>
|
380
|
+
</Attribute>
|
381
|
+
</Attributes>
|
382
|
+
</Cell>
|
383
|
+
</Cells>
|
384
|
+
</Row>
|
385
|
+
<Row>
|
386
|
+
<RowType>Row</RowType>
|
387
|
+
<Cells>
|
388
|
+
<Cell>
|
389
|
+
<Value>Light, Power, Heating (445)</Value>
|
390
|
+
<Attributes>
|
391
|
+
<Attribute>
|
392
|
+
<Value>42a56c1a-6141-4bf2-913d-916dc1a35cfd</Value>
|
393
|
+
<Id>account</Id>
|
394
|
+
</Attribute>
|
395
|
+
</Attributes>
|
396
|
+
</Cell>
|
397
|
+
<Cell>
|
398
|
+
<Value>301.00</Value>
|
399
|
+
<Attributes>
|
400
|
+
<Attribute>
|
401
|
+
<Value>42a56c1a-6141-4bf2-913d-916dc1a35cfd</Value>
|
402
|
+
<Id>account</Id>
|
403
|
+
</Attribute>
|
404
|
+
</Attributes>
|
405
|
+
</Cell>
|
406
|
+
<Cell>
|
407
|
+
<Attributes>
|
408
|
+
<Attribute>
|
409
|
+
<Value>42a56c1a-6141-4bf2-913d-916dc1a35cfd</Value>
|
410
|
+
<Id>account</Id>
|
411
|
+
</Attribute>
|
412
|
+
</Attributes>
|
413
|
+
</Cell>
|
414
|
+
<Cell>
|
415
|
+
<Value>946.00</Value>
|
416
|
+
<Attributes>
|
417
|
+
<Attribute>
|
418
|
+
<Value>42a56c1a-6141-4bf2-913d-916dc1a35cfd</Value>
|
419
|
+
<Id>account</Id>
|
420
|
+
</Attribute>
|
421
|
+
</Attributes>
|
422
|
+
</Cell>
|
423
|
+
<Cell>
|
424
|
+
<Attributes>
|
425
|
+
<Attribute>
|
426
|
+
<Value>42a56c1a-6141-4bf2-913d-916dc1a35cfd</Value>
|
427
|
+
<Id>account</Id>
|
428
|
+
</Attribute>
|
429
|
+
</Attributes>
|
430
|
+
</Cell>
|
431
|
+
</Cells>
|
432
|
+
</Row>
|
433
|
+
<Row>
|
434
|
+
<RowType>Row</RowType>
|
435
|
+
<Cells>
|
436
|
+
<Cell>
|
437
|
+
<Value>Motor Vehicle Expenses (449)</Value>
|
438
|
+
<Attributes>
|
439
|
+
<Attribute>
|
440
|
+
<Value>005f380d-4a9c-497f-b9d7-817f0f02790e</Value>
|
441
|
+
<Id>account</Id>
|
442
|
+
</Attribute>
|
443
|
+
</Attributes>
|
444
|
+
</Cell>
|
445
|
+
<Cell>
|
446
|
+
<Value>1085.00</Value>
|
447
|
+
<Attributes>
|
448
|
+
<Attribute>
|
449
|
+
<Value>005f380d-4a9c-497f-b9d7-817f0f02790e</Value>
|
450
|
+
<Id>account</Id>
|
451
|
+
</Attribute>
|
452
|
+
</Attributes>
|
453
|
+
</Cell>
|
454
|
+
<Cell>
|
455
|
+
<Attributes>
|
456
|
+
<Attribute>
|
457
|
+
<Value>005f380d-4a9c-497f-b9d7-817f0f02790e</Value>
|
458
|
+
<Id>account</Id>
|
459
|
+
</Attribute>
|
460
|
+
</Attributes>
|
461
|
+
</Cell>
|
462
|
+
<Cell>
|
463
|
+
<Value>1455.00</Value>
|
464
|
+
<Attributes>
|
465
|
+
<Attribute>
|
466
|
+
<Value>005f380d-4a9c-497f-b9d7-817f0f02790e</Value>
|
467
|
+
<Id>account</Id>
|
468
|
+
</Attribute>
|
469
|
+
</Attributes>
|
470
|
+
</Cell>
|
471
|
+
<Cell>
|
472
|
+
<Attributes>
|
473
|
+
<Attribute>
|
474
|
+
<Value>005f380d-4a9c-497f-b9d7-817f0f02790e</Value>
|
475
|
+
<Id>account</Id>
|
476
|
+
</Attribute>
|
477
|
+
</Attributes>
|
478
|
+
</Cell>
|
479
|
+
</Cells>
|
480
|
+
</Row>
|
481
|
+
<Row>
|
482
|
+
<RowType>Row</RowType>
|
483
|
+
<Cells>
|
484
|
+
<Cell>
|
485
|
+
<Value>Office Expenses (453)</Value>
|
486
|
+
<Attributes>
|
487
|
+
<Attribute>
|
488
|
+
<Value>8ab9d684-f897-4168-b5d1-2279bf74bb82</Value>
|
489
|
+
<Id>account</Id>
|
490
|
+
</Attribute>
|
491
|
+
</Attributes>
|
492
|
+
</Cell>
|
493
|
+
<Cell>
|
494
|
+
<Value>449.93</Value>
|
495
|
+
<Attributes>
|
496
|
+
<Attribute>
|
497
|
+
<Value>8ab9d684-f897-4168-b5d1-2279bf74bb82</Value>
|
498
|
+
<Id>account</Id>
|
499
|
+
</Attribute>
|
500
|
+
</Attributes>
|
501
|
+
</Cell>
|
502
|
+
<Cell>
|
503
|
+
<Attributes>
|
504
|
+
<Attribute>
|
505
|
+
<Value>8ab9d684-f897-4168-b5d1-2279bf74bb82</Value>
|
506
|
+
<Id>account</Id>
|
507
|
+
</Attribute>
|
508
|
+
</Attributes>
|
509
|
+
</Cell>
|
510
|
+
<Cell>
|
511
|
+
<Value>1745.92</Value>
|
512
|
+
<Attributes>
|
513
|
+
<Attribute>
|
514
|
+
<Value>8ab9d684-f897-4168-b5d1-2279bf74bb82</Value>
|
515
|
+
<Id>account</Id>
|
516
|
+
</Attribute>
|
517
|
+
</Attributes>
|
518
|
+
</Cell>
|
519
|
+
<Cell>
|
520
|
+
<Attributes>
|
521
|
+
<Attribute>
|
522
|
+
<Value>8ab9d684-f897-4168-b5d1-2279bf74bb82</Value>
|
523
|
+
<Id>account</Id>
|
524
|
+
</Attribute>
|
525
|
+
</Attributes>
|
526
|
+
</Cell>
|
527
|
+
</Cells>
|
528
|
+
</Row>
|
529
|
+
<Row>
|
530
|
+
<RowType>Row</RowType>
|
531
|
+
<Cells>
|
532
|
+
<Cell>
|
533
|
+
<Value>Printing & Stationery (461)</Value>
|
534
|
+
<Attributes>
|
535
|
+
<Attribute>
|
536
|
+
<Value>b18eaea6-4d11-462c-ac30-7975108b5859</Value>
|
537
|
+
<Id>account</Id>
|
538
|
+
</Attribute>
|
539
|
+
</Attributes>
|
540
|
+
</Cell>
|
541
|
+
<Cell>
|
542
|
+
<Value>19.91</Value>
|
543
|
+
<Attributes>
|
544
|
+
<Attribute>
|
545
|
+
<Value>b18eaea6-4d11-462c-ac30-7975108b5859</Value>
|
546
|
+
<Id>account</Id>
|
547
|
+
</Attribute>
|
548
|
+
</Attributes>
|
549
|
+
</Cell>
|
550
|
+
<Cell>
|
551
|
+
<Attributes>
|
552
|
+
<Attribute>
|
553
|
+
<Value>b18eaea6-4d11-462c-ac30-7975108b5859</Value>
|
554
|
+
<Id>account</Id>
|
555
|
+
</Attribute>
|
556
|
+
</Attributes>
|
557
|
+
</Cell>
|
558
|
+
<Cell>
|
559
|
+
<Value>180.45</Value>
|
560
|
+
<Attributes>
|
561
|
+
<Attribute>
|
562
|
+
<Value>b18eaea6-4d11-462c-ac30-7975108b5859</Value>
|
563
|
+
<Id>account</Id>
|
564
|
+
</Attribute>
|
565
|
+
</Attributes>
|
566
|
+
</Cell>
|
567
|
+
<Cell>
|
568
|
+
<Attributes>
|
569
|
+
<Attribute>
|
570
|
+
<Value>b18eaea6-4d11-462c-ac30-7975108b5859</Value>
|
571
|
+
<Id>account</Id>
|
572
|
+
</Attribute>
|
573
|
+
</Attributes>
|
574
|
+
</Cell>
|
575
|
+
</Cells>
|
576
|
+
</Row>
|
577
|
+
<Row>
|
578
|
+
<RowType>Row</RowType>
|
579
|
+
<Cells>
|
580
|
+
<Cell>
|
581
|
+
<Value>Purchases (300)</Value>
|
582
|
+
<Attributes>
|
583
|
+
<Attribute>
|
584
|
+
<Value>ee30a086-d381-4bd6-ba47-7af927d25825</Value>
|
585
|
+
<Id>account</Id>
|
586
|
+
</Attribute>
|
587
|
+
</Attributes>
|
588
|
+
</Cell>
|
589
|
+
<Cell>
|
590
|
+
<Value>763.64</Value>
|
591
|
+
<Attributes>
|
592
|
+
<Attribute>
|
593
|
+
<Value>ee30a086-d381-4bd6-ba47-7af927d25825</Value>
|
594
|
+
<Id>account</Id>
|
595
|
+
</Attribute>
|
596
|
+
</Attributes>
|
597
|
+
</Cell>
|
598
|
+
<Cell>
|
599
|
+
<Attributes>
|
600
|
+
<Attribute>
|
601
|
+
<Value>ee30a086-d381-4bd6-ba47-7af927d25825</Value>
|
602
|
+
<Id>account</Id>
|
603
|
+
</Attribute>
|
604
|
+
</Attributes>
|
605
|
+
</Cell>
|
606
|
+
<Cell>
|
607
|
+
<Value>763.64</Value>
|
608
|
+
<Attributes>
|
609
|
+
<Attribute>
|
610
|
+
<Value>ee30a086-d381-4bd6-ba47-7af927d25825</Value>
|
611
|
+
<Id>account</Id>
|
612
|
+
</Attribute>
|
613
|
+
</Attributes>
|
614
|
+
</Cell>
|
615
|
+
<Cell>
|
616
|
+
<Attributes>
|
617
|
+
<Attribute>
|
618
|
+
<Value>ee30a086-d381-4bd6-ba47-7af927d25825</Value>
|
619
|
+
<Id>account</Id>
|
620
|
+
</Attribute>
|
621
|
+
</Attributes>
|
622
|
+
</Cell>
|
623
|
+
</Cells>
|
624
|
+
</Row>
|
625
|
+
<Row>
|
626
|
+
<RowType>Row</RowType>
|
627
|
+
<Cells>
|
628
|
+
<Cell>
|
629
|
+
<Value>Rent (469)</Value>
|
630
|
+
<Attributes>
|
631
|
+
<Attribute>
|
632
|
+
<Value>f5f05ee3-f9cd-4bf9-9423-ed81de96b537</Value>
|
633
|
+
<Id>account</Id>
|
634
|
+
</Attribute>
|
635
|
+
</Attributes>
|
636
|
+
</Cell>
|
637
|
+
<Cell>
|
638
|
+
<Value>0.00</Value>
|
639
|
+
<Attributes>
|
640
|
+
<Attribute>
|
641
|
+
<Value>f5f05ee3-f9cd-4bf9-9423-ed81de96b537</Value>
|
642
|
+
<Id>account</Id>
|
643
|
+
</Attribute>
|
644
|
+
</Attributes>
|
645
|
+
</Cell>
|
646
|
+
<Cell>
|
647
|
+
<Attributes>
|
648
|
+
<Attribute>
|
649
|
+
<Value>f5f05ee3-f9cd-4bf9-9423-ed81de96b537</Value>
|
650
|
+
<Id>account</Id>
|
651
|
+
</Attribute>
|
652
|
+
</Attributes>
|
653
|
+
</Cell>
|
654
|
+
<Cell>
|
655
|
+
<Value>4500.00</Value>
|
656
|
+
<Attributes>
|
657
|
+
<Attribute>
|
658
|
+
<Value>f5f05ee3-f9cd-4bf9-9423-ed81de96b537</Value>
|
659
|
+
<Id>account</Id>
|
660
|
+
</Attribute>
|
661
|
+
</Attributes>
|
662
|
+
</Cell>
|
663
|
+
<Cell>
|
664
|
+
<Attributes>
|
665
|
+
<Attribute>
|
666
|
+
<Value>f5f05ee3-f9cd-4bf9-9423-ed81de96b537</Value>
|
667
|
+
<Id>account</Id>
|
668
|
+
</Attribute>
|
669
|
+
</Attributes>
|
670
|
+
</Cell>
|
671
|
+
</Cells>
|
672
|
+
</Row>
|
673
|
+
<Row>
|
674
|
+
<RowType>Row</RowType>
|
675
|
+
<Cells>
|
676
|
+
<Cell>
|
677
|
+
<Value>Subscriptions (485)</Value>
|
678
|
+
<Attributes>
|
679
|
+
<Attribute>
|
680
|
+
<Value>b3742a53-0f64-4765-b5cc-3ece843b2e91</Value>
|
681
|
+
<Id>account</Id>
|
682
|
+
</Attribute>
|
683
|
+
</Attributes>
|
684
|
+
</Cell>
|
685
|
+
<Cell>
|
686
|
+
<Value>120.00</Value>
|
687
|
+
<Attributes>
|
688
|
+
<Attribute>
|
689
|
+
<Value>b3742a53-0f64-4765-b5cc-3ece843b2e91</Value>
|
690
|
+
<Id>account</Id>
|
691
|
+
</Attribute>
|
692
|
+
</Attributes>
|
693
|
+
</Cell>
|
694
|
+
<Cell>
|
695
|
+
<Attributes>
|
696
|
+
<Attribute>
|
697
|
+
<Value>b3742a53-0f64-4765-b5cc-3ece843b2e91</Value>
|
698
|
+
<Id>account</Id>
|
699
|
+
</Attribute>
|
700
|
+
</Attributes>
|
701
|
+
</Cell>
|
702
|
+
<Cell>
|
703
|
+
<Value>120.00</Value>
|
704
|
+
<Attributes>
|
705
|
+
<Attribute>
|
706
|
+
<Value>b3742a53-0f64-4765-b5cc-3ece843b2e91</Value>
|
707
|
+
<Id>account</Id>
|
708
|
+
</Attribute>
|
709
|
+
</Attributes>
|
710
|
+
</Cell>
|
711
|
+
<Cell>
|
712
|
+
<Attributes>
|
713
|
+
<Attribute>
|
714
|
+
<Value>b3742a53-0f64-4765-b5cc-3ece843b2e91</Value>
|
715
|
+
<Id>account</Id>
|
716
|
+
</Attribute>
|
717
|
+
</Attributes>
|
718
|
+
</Cell>
|
719
|
+
</Cells>
|
720
|
+
</Row>
|
721
|
+
<Row>
|
722
|
+
<RowType>Row</RowType>
|
723
|
+
<Cells>
|
724
|
+
<Cell>
|
725
|
+
<Value>Telephone & Internet (489)</Value>
|
726
|
+
<Attributes>
|
727
|
+
<Attribute>
|
728
|
+
<Value>266f40cc-5aa1-4f6c-b078-eb615171d6de</Value>
|
729
|
+
<Id>account</Id>
|
730
|
+
</Attribute>
|
731
|
+
</Attributes>
|
732
|
+
</Cell>
|
733
|
+
<Cell>
|
734
|
+
<Value>32.50</Value>
|
735
|
+
<Attributes>
|
736
|
+
<Attribute>
|
737
|
+
<Value>266f40cc-5aa1-4f6c-b078-eb615171d6de</Value>
|
738
|
+
<Id>account</Id>
|
739
|
+
</Attribute>
|
740
|
+
</Attributes>
|
741
|
+
</Cell>
|
742
|
+
<Cell>
|
743
|
+
<Attributes>
|
744
|
+
<Attribute>
|
745
|
+
<Value>266f40cc-5aa1-4f6c-b078-eb615171d6de</Value>
|
746
|
+
<Id>account</Id>
|
747
|
+
</Attribute>
|
748
|
+
</Attributes>
|
749
|
+
</Cell>
|
750
|
+
<Cell>
|
751
|
+
<Value>222.85</Value>
|
752
|
+
<Attributes>
|
753
|
+
<Attribute>
|
754
|
+
<Value>266f40cc-5aa1-4f6c-b078-eb615171d6de</Value>
|
755
|
+
<Id>account</Id>
|
756
|
+
</Attribute>
|
757
|
+
</Attributes>
|
758
|
+
</Cell>
|
759
|
+
<Cell>
|
760
|
+
<Attributes>
|
761
|
+
<Attribute>
|
762
|
+
<Value>266f40cc-5aa1-4f6c-b078-eb615171d6de</Value>
|
763
|
+
<Id>account</Id>
|
764
|
+
</Attribute>
|
765
|
+
</Attributes>
|
766
|
+
</Cell>
|
767
|
+
</Cells>
|
768
|
+
</Row>
|
769
|
+
<Row>
|
770
|
+
<RowType>Row</RowType>
|
771
|
+
<Cells>
|
772
|
+
<Cell>
|
773
|
+
<Value>Travel - National (493)</Value>
|
774
|
+
<Attributes>
|
775
|
+
<Attribute>
|
776
|
+
<Value>25717024-5b50-4320-93b7-280c0614a613</Value>
|
777
|
+
<Id>account</Id>
|
778
|
+
</Attribute>
|
779
|
+
</Attributes>
|
780
|
+
</Cell>
|
781
|
+
<Cell>
|
782
|
+
<Value>38.18</Value>
|
783
|
+
<Attributes>
|
784
|
+
<Attribute>
|
785
|
+
<Value>25717024-5b50-4320-93b7-280c0614a613</Value>
|
786
|
+
<Id>account</Id>
|
787
|
+
</Attribute>
|
788
|
+
</Attributes>
|
789
|
+
</Cell>
|
790
|
+
<Cell>
|
791
|
+
<Attributes>
|
792
|
+
<Attribute>
|
793
|
+
<Value>25717024-5b50-4320-93b7-280c0614a613</Value>
|
794
|
+
<Id>account</Id>
|
795
|
+
</Attribute>
|
796
|
+
</Attributes>
|
797
|
+
</Cell>
|
798
|
+
<Cell>
|
799
|
+
<Value>500.32</Value>
|
800
|
+
<Attributes>
|
801
|
+
<Attribute>
|
802
|
+
<Value>25717024-5b50-4320-93b7-280c0614a613</Value>
|
803
|
+
<Id>account</Id>
|
804
|
+
</Attribute>
|
805
|
+
</Attributes>
|
806
|
+
</Cell>
|
807
|
+
<Cell>
|
808
|
+
<Attributes>
|
809
|
+
<Attribute>
|
810
|
+
<Value>25717024-5b50-4320-93b7-280c0614a613</Value>
|
811
|
+
<Id>account</Id>
|
812
|
+
</Attribute>
|
813
|
+
</Attributes>
|
814
|
+
</Cell>
|
815
|
+
</Cells>
|
816
|
+
</Row>
|
817
|
+
<Row>
|
818
|
+
<RowType>Row</RowType>
|
819
|
+
<Cells>
|
820
|
+
<Cell>
|
821
|
+
<Value>Wages and Salaries (477)</Value>
|
822
|
+
<Attributes>
|
823
|
+
<Attribute>
|
824
|
+
<Value>c4f12f09-846e-4f6f-b39c-dff3be3e49a7</Value>
|
825
|
+
<Id>account</Id>
|
826
|
+
</Attribute>
|
827
|
+
</Attributes>
|
828
|
+
</Cell>
|
829
|
+
<Cell>
|
830
|
+
<Value>13400.00</Value>
|
831
|
+
<Attributes>
|
832
|
+
<Attribute>
|
833
|
+
<Value>c4f12f09-846e-4f6f-b39c-dff3be3e49a7</Value>
|
834
|
+
<Id>account</Id>
|
835
|
+
</Attribute>
|
836
|
+
</Attributes>
|
837
|
+
</Cell>
|
838
|
+
<Cell>
|
839
|
+
<Attributes>
|
840
|
+
<Attribute>
|
841
|
+
<Value>c4f12f09-846e-4f6f-b39c-dff3be3e49a7</Value>
|
842
|
+
<Id>account</Id>
|
843
|
+
</Attribute>
|
844
|
+
</Attributes>
|
845
|
+
</Cell>
|
846
|
+
<Cell>
|
847
|
+
<Value>40200.00</Value>
|
848
|
+
<Attributes>
|
849
|
+
<Attribute>
|
850
|
+
<Value>c4f12f09-846e-4f6f-b39c-dff3be3e49a7</Value>
|
851
|
+
<Id>account</Id>
|
852
|
+
</Attribute>
|
853
|
+
</Attributes>
|
854
|
+
</Cell>
|
855
|
+
<Cell>
|
856
|
+
<Attributes>
|
857
|
+
<Attribute>
|
858
|
+
<Value>c4f12f09-846e-4f6f-b39c-dff3be3e49a7</Value>
|
859
|
+
<Id>account</Id>
|
860
|
+
</Attribute>
|
861
|
+
</Attributes>
|
862
|
+
</Cell>
|
863
|
+
</Cells>
|
864
|
+
</Row>
|
865
|
+
</Rows>
|
866
|
+
</Row>
|
867
|
+
<Row>
|
868
|
+
<RowType>Section</RowType>
|
869
|
+
<Title>Assets</Title>
|
870
|
+
<Rows>
|
871
|
+
<Row>
|
872
|
+
<RowType>Row</RowType>
|
873
|
+
<Cells>
|
874
|
+
<Cell>
|
875
|
+
<Value>Accounts Receivable (610)</Value>
|
876
|
+
<Attributes>
|
877
|
+
<Attribute>
|
878
|
+
<Value>3dd5c80d-e109-4313-8c61-41648e33704f</Value>
|
879
|
+
<Id>account</Id>
|
880
|
+
</Attribute>
|
881
|
+
</Attributes>
|
882
|
+
</Cell>
|
883
|
+
<Cell>
|
884
|
+
<Value>4216.67</Value>
|
885
|
+
<Attributes>
|
886
|
+
<Attribute>
|
887
|
+
<Value>3dd5c80d-e109-4313-8c61-41648e33704f</Value>
|
888
|
+
<Id>account</Id>
|
889
|
+
</Attribute>
|
890
|
+
</Attributes>
|
891
|
+
</Cell>
|
892
|
+
<Cell>
|
893
|
+
<Attributes>
|
894
|
+
<Attribute>
|
895
|
+
<Value>3dd5c80d-e109-4313-8c61-41648e33704f</Value>
|
896
|
+
<Id>account</Id>
|
897
|
+
</Attribute>
|
898
|
+
</Attributes>
|
899
|
+
</Cell>
|
900
|
+
<Cell>
|
901
|
+
<Value>14966.17</Value>
|
902
|
+
<Attributes>
|
903
|
+
<Attribute>
|
904
|
+
<Value>3dd5c80d-e109-4313-8c61-41648e33704f</Value>
|
905
|
+
<Id>account</Id>
|
906
|
+
</Attribute>
|
907
|
+
</Attributes>
|
908
|
+
</Cell>
|
909
|
+
<Cell>
|
910
|
+
<Attributes>
|
911
|
+
<Attribute>
|
912
|
+
<Value>3dd5c80d-e109-4313-8c61-41648e33704f</Value>
|
913
|
+
<Id>account</Id>
|
914
|
+
</Attribute>
|
915
|
+
</Attributes>
|
916
|
+
</Cell>
|
917
|
+
</Cells>
|
918
|
+
</Row>
|
919
|
+
<Row>
|
920
|
+
<RowType>Row</RowType>
|
921
|
+
<Cells>
|
922
|
+
<Cell>
|
923
|
+
<Value>ANZ Business Account</Value>
|
924
|
+
<Attributes>
|
925
|
+
<Attribute>
|
926
|
+
<Value>13918178-849a-4823-9a31-57b7eac713d7</Value>
|
927
|
+
<Id>account</Id>
|
928
|
+
</Attribute>
|
929
|
+
</Attributes>
|
930
|
+
</Cell>
|
931
|
+
<Cell>
|
932
|
+
<Value>1054.42</Value>
|
933
|
+
<Attributes>
|
934
|
+
<Attribute>
|
935
|
+
<Value>13918178-849a-4823-9a31-57b7eac713d7</Value>
|
936
|
+
<Id>account</Id>
|
937
|
+
</Attribute>
|
938
|
+
</Attributes>
|
939
|
+
</Cell>
|
940
|
+
<Cell>
|
941
|
+
<Attributes>
|
942
|
+
<Attribute>
|
943
|
+
<Value>13918178-849a-4823-9a31-57b7eac713d7</Value>
|
944
|
+
<Id>account</Id>
|
945
|
+
</Attribute>
|
946
|
+
</Attributes>
|
947
|
+
</Cell>
|
948
|
+
<Cell>
|
949
|
+
<Value>405.27</Value>
|
950
|
+
<Attributes>
|
951
|
+
<Attribute>
|
952
|
+
<Value>13918178-849a-4823-9a31-57b7eac713d7</Value>
|
953
|
+
<Id>account</Id>
|
954
|
+
</Attribute>
|
955
|
+
</Attributes>
|
956
|
+
</Cell>
|
957
|
+
<Cell>
|
958
|
+
<Attributes>
|
959
|
+
<Attribute>
|
960
|
+
<Value>13918178-849a-4823-9a31-57b7eac713d7</Value>
|
961
|
+
<Id>account</Id>
|
962
|
+
</Attribute>
|
963
|
+
</Attributes>
|
964
|
+
</Cell>
|
965
|
+
</Cells>
|
966
|
+
</Row>
|
967
|
+
<Row>
|
968
|
+
<RowType>Row</RowType>
|
969
|
+
<Cells>
|
970
|
+
<Cell>
|
971
|
+
<Value>Computer Equipment (720)</Value>
|
972
|
+
<Attributes>
|
973
|
+
<Attribute>
|
974
|
+
<Value>75bbcb81-6b3d-4ca9-8522-3b582cb5c21a</Value>
|
975
|
+
<Id>account</Id>
|
976
|
+
</Attribute>
|
977
|
+
</Attributes>
|
978
|
+
</Cell>
|
979
|
+
<Cell>
|
980
|
+
<Value>1969.99</Value>
|
981
|
+
<Attributes>
|
982
|
+
<Attribute>
|
983
|
+
<Value>75bbcb81-6b3d-4ca9-8522-3b582cb5c21a</Value>
|
984
|
+
<Id>account</Id>
|
985
|
+
</Attribute>
|
986
|
+
</Attributes>
|
987
|
+
</Cell>
|
988
|
+
<Cell>
|
989
|
+
<Attributes>
|
990
|
+
<Attribute>
|
991
|
+
<Value>75bbcb81-6b3d-4ca9-8522-3b582cb5c21a</Value>
|
992
|
+
<Id>account</Id>
|
993
|
+
</Attribute>
|
994
|
+
</Attributes>
|
995
|
+
</Cell>
|
996
|
+
<Cell>
|
997
|
+
<Value>2469.99</Value>
|
998
|
+
<Attributes>
|
999
|
+
<Attribute>
|
1000
|
+
<Value>75bbcb81-6b3d-4ca9-8522-3b582cb5c21a</Value>
|
1001
|
+
<Id>account</Id>
|
1002
|
+
</Attribute>
|
1003
|
+
</Attributes>
|
1004
|
+
</Cell>
|
1005
|
+
<Cell>
|
1006
|
+
<Attributes>
|
1007
|
+
<Attribute>
|
1008
|
+
<Value>75bbcb81-6b3d-4ca9-8522-3b582cb5c21a</Value>
|
1009
|
+
<Id>account</Id>
|
1010
|
+
</Attribute>
|
1011
|
+
</Attributes>
|
1012
|
+
</Cell>
|
1013
|
+
</Cells>
|
1014
|
+
</Row>
|
1015
|
+
<Row>
|
1016
|
+
<RowType>Row</RowType>
|
1017
|
+
<Cells>
|
1018
|
+
<Cell>
|
1019
|
+
<Value>Office Equipment (710)</Value>
|
1020
|
+
<Attributes>
|
1021
|
+
<Attribute>
|
1022
|
+
<Value>2d69b4ee-37d4-4f67-b950-32cbdd5765ed</Value>
|
1023
|
+
<Id>account</Id>
|
1024
|
+
</Attribute>
|
1025
|
+
</Attributes>
|
1026
|
+
</Cell>
|
1027
|
+
<Cell>
|
1028
|
+
<Value>6300.00</Value>
|
1029
|
+
<Attributes>
|
1030
|
+
<Attribute>
|
1031
|
+
<Value>2d69b4ee-37d4-4f67-b950-32cbdd5765ed</Value>
|
1032
|
+
<Id>account</Id>
|
1033
|
+
</Attribute>
|
1034
|
+
</Attributes>
|
1035
|
+
</Cell>
|
1036
|
+
<Cell>
|
1037
|
+
<Attributes>
|
1038
|
+
<Attribute>
|
1039
|
+
<Value>2d69b4ee-37d4-4f67-b950-32cbdd5765ed</Value>
|
1040
|
+
<Id>account</Id>
|
1041
|
+
</Attribute>
|
1042
|
+
</Attributes>
|
1043
|
+
</Cell>
|
1044
|
+
<Cell>
|
1045
|
+
<Value>7050.00</Value>
|
1046
|
+
<Attributes>
|
1047
|
+
<Attribute>
|
1048
|
+
<Value>2d69b4ee-37d4-4f67-b950-32cbdd5765ed</Value>
|
1049
|
+
<Id>account</Id>
|
1050
|
+
</Attribute>
|
1051
|
+
</Attributes>
|
1052
|
+
</Cell>
|
1053
|
+
<Cell>
|
1054
|
+
<Attributes>
|
1055
|
+
<Attribute>
|
1056
|
+
<Value>2d69b4ee-37d4-4f67-b950-32cbdd5765ed</Value>
|
1057
|
+
<Id>account</Id>
|
1058
|
+
</Attribute>
|
1059
|
+
</Attributes>
|
1060
|
+
</Cell>
|
1061
|
+
</Cells>
|
1062
|
+
</Row>
|
1063
|
+
<Row>
|
1064
|
+
<RowType>Row</RowType>
|
1065
|
+
<Cells>
|
1066
|
+
<Cell>
|
1067
|
+
<Value>Less Accumulated Depreciation on Office Equipment (711)</Value>
|
1068
|
+
<Attributes>
|
1069
|
+
<Attribute>
|
1070
|
+
<Value>24d010bf-5e4b-42dd-9aa3-a5484dd0686f</Value>
|
1071
|
+
<Id>account</Id>
|
1072
|
+
</Attribute>
|
1073
|
+
</Attributes>
|
1074
|
+
</Cell>
|
1075
|
+
<Cell>
|
1076
|
+
<Value>0.00</Value>
|
1077
|
+
<Attributes>
|
1078
|
+
<Attribute>
|
1079
|
+
<Value>24d010bf-5e4b-42dd-9aa3-a5484dd0686f</Value>
|
1080
|
+
<Id>account</Id>
|
1081
|
+
</Attribute>
|
1082
|
+
</Attributes>
|
1083
|
+
</Cell>
|
1084
|
+
<Cell>
|
1085
|
+
<Attributes>
|
1086
|
+
<Attribute>
|
1087
|
+
<Value>24d010bf-5e4b-42dd-9aa3-a5484dd0686f</Value>
|
1088
|
+
<Id>account</Id>
|
1089
|
+
</Attribute>
|
1090
|
+
</Attributes>
|
1091
|
+
</Cell>
|
1092
|
+
<Cell>
|
1093
|
+
<Attributes>
|
1094
|
+
<Attribute>
|
1095
|
+
<Value>24d010bf-5e4b-42dd-9aa3-a5484dd0686f</Value>
|
1096
|
+
<Id>account</Id>
|
1097
|
+
</Attribute>
|
1098
|
+
</Attributes>
|
1099
|
+
</Cell>
|
1100
|
+
<Cell>
|
1101
|
+
<Value>825.00</Value>
|
1102
|
+
<Attributes>
|
1103
|
+
<Attribute>
|
1104
|
+
<Value>24d010bf-5e4b-42dd-9aa3-a5484dd0686f</Value>
|
1105
|
+
<Id>account</Id>
|
1106
|
+
</Attribute>
|
1107
|
+
</Attributes>
|
1108
|
+
</Cell>
|
1109
|
+
</Cells>
|
1110
|
+
</Row>
|
1111
|
+
<Row>
|
1112
|
+
<RowType>Row</RowType>
|
1113
|
+
<Cells>
|
1114
|
+
<Cell>
|
1115
|
+
<Value>Ridgeway Savings (099)</Value>
|
1116
|
+
<Attributes>
|
1117
|
+
<Attribute>
|
1118
|
+
<Value>26028d3a-f981-44d6-a9ed-a522198870f8</Value>
|
1119
|
+
<Id>account</Id>
|
1120
|
+
</Attribute>
|
1121
|
+
</Attributes>
|
1122
|
+
</Cell>
|
1123
|
+
<Cell>
|
1124
|
+
<Attributes>
|
1125
|
+
<Attribute>
|
1126
|
+
<Value>26028d3a-f981-44d6-a9ed-a522198870f8</Value>
|
1127
|
+
<Id>account</Id>
|
1128
|
+
</Attribute>
|
1129
|
+
</Attributes>
|
1130
|
+
</Cell>
|
1131
|
+
<Cell>
|
1132
|
+
<Value>15271.66</Value>
|
1133
|
+
<Attributes>
|
1134
|
+
<Attribute>
|
1135
|
+
<Value>26028d3a-f981-44d6-a9ed-a522198870f8</Value>
|
1136
|
+
<Id>account</Id>
|
1137
|
+
</Attribute>
|
1138
|
+
</Attributes>
|
1139
|
+
</Cell>
|
1140
|
+
<Cell>
|
1141
|
+
<Value>0.00</Value>
|
1142
|
+
<Attributes>
|
1143
|
+
<Attribute>
|
1144
|
+
<Value>26028d3a-f981-44d6-a9ed-a522198870f8</Value>
|
1145
|
+
<Id>account</Id>
|
1146
|
+
</Attribute>
|
1147
|
+
</Attributes>
|
1148
|
+
</Cell>
|
1149
|
+
<Cell>
|
1150
|
+
<Attributes>
|
1151
|
+
<Attribute>
|
1152
|
+
<Value>26028d3a-f981-44d6-a9ed-a522198870f8</Value>
|
1153
|
+
<Id>account</Id>
|
1154
|
+
</Attribute>
|
1155
|
+
</Attributes>
|
1156
|
+
</Cell>
|
1157
|
+
</Cells>
|
1158
|
+
</Row>
|
1159
|
+
</Rows>
|
1160
|
+
</Row>
|
1161
|
+
<Row>
|
1162
|
+
<RowType>Section</RowType>
|
1163
|
+
<Title>Liabilities</Title>
|
1164
|
+
<Rows>
|
1165
|
+
<Row>
|
1166
|
+
<RowType>Row</RowType>
|
1167
|
+
<Cells>
|
1168
|
+
<Cell>
|
1169
|
+
<Value>Accounts Payable (800)</Value>
|
1170
|
+
<Attributes>
|
1171
|
+
<Attribute>
|
1172
|
+
<Value>8e9c5166-d3fe-4e21-827a-f42753568e80</Value>
|
1173
|
+
<Id>account</Id>
|
1174
|
+
</Attribute>
|
1175
|
+
</Attributes>
|
1176
|
+
</Cell>
|
1177
|
+
<Cell>
|
1178
|
+
<Attributes>
|
1179
|
+
<Attribute>
|
1180
|
+
<Value>8e9c5166-d3fe-4e21-827a-f42753568e80</Value>
|
1181
|
+
<Id>account</Id>
|
1182
|
+
</Attribute>
|
1183
|
+
</Attributes>
|
1184
|
+
</Cell>
|
1185
|
+
<Cell>
|
1186
|
+
<Value>7077.99</Value>
|
1187
|
+
<Attributes>
|
1188
|
+
<Attribute>
|
1189
|
+
<Value>8e9c5166-d3fe-4e21-827a-f42753568e80</Value>
|
1190
|
+
<Id>account</Id>
|
1191
|
+
</Attribute>
|
1192
|
+
</Attributes>
|
1193
|
+
</Cell>
|
1194
|
+
<Cell>
|
1195
|
+
<Attributes>
|
1196
|
+
<Attribute>
|
1197
|
+
<Value>8e9c5166-d3fe-4e21-827a-f42753568e80</Value>
|
1198
|
+
<Id>account</Id>
|
1199
|
+
</Attribute>
|
1200
|
+
</Attributes>
|
1201
|
+
</Cell>
|
1202
|
+
<Cell>
|
1203
|
+
<Value>9248.49</Value>
|
1204
|
+
<Attributes>
|
1205
|
+
<Attribute>
|
1206
|
+
<Value>8e9c5166-d3fe-4e21-827a-f42753568e80</Value>
|
1207
|
+
<Id>account</Id>
|
1208
|
+
</Attribute>
|
1209
|
+
</Attributes>
|
1210
|
+
</Cell>
|
1211
|
+
</Cells>
|
1212
|
+
</Row>
|
1213
|
+
<Row>
|
1214
|
+
<RowType>Row</RowType>
|
1215
|
+
<Cells>
|
1216
|
+
<Cell>
|
1217
|
+
<Value>GST (820)</Value>
|
1218
|
+
<Attributes>
|
1219
|
+
<Attribute>
|
1220
|
+
<Value>66e60a82-99d8-47d1-956b-5baea404acba</Value>
|
1221
|
+
<Id>account</Id>
|
1222
|
+
</Attribute>
|
1223
|
+
</Attributes>
|
1224
|
+
</Cell>
|
1225
|
+
<Cell>
|
1226
|
+
<Value>577.36</Value>
|
1227
|
+
<Attributes>
|
1228
|
+
<Attribute>
|
1229
|
+
<Value>66e60a82-99d8-47d1-956b-5baea404acba</Value>
|
1230
|
+
<Id>account</Id>
|
1231
|
+
</Attribute>
|
1232
|
+
</Attributes>
|
1233
|
+
</Cell>
|
1234
|
+
<Cell>
|
1235
|
+
<Attributes>
|
1236
|
+
<Attribute>
|
1237
|
+
<Value>66e60a82-99d8-47d1-956b-5baea404acba</Value>
|
1238
|
+
<Id>account</Id>
|
1239
|
+
</Attribute>
|
1240
|
+
</Attributes>
|
1241
|
+
</Cell>
|
1242
|
+
<Cell>
|
1243
|
+
<Attributes>
|
1244
|
+
<Attribute>
|
1245
|
+
<Value>66e60a82-99d8-47d1-956b-5baea404acba</Value>
|
1246
|
+
<Id>account</Id>
|
1247
|
+
</Attribute>
|
1248
|
+
</Attributes>
|
1249
|
+
</Cell>
|
1250
|
+
<Cell>
|
1251
|
+
<Value>1559.41</Value>
|
1252
|
+
<Attributes>
|
1253
|
+
<Attribute>
|
1254
|
+
<Value>66e60a82-99d8-47d1-956b-5baea404acba</Value>
|
1255
|
+
<Id>account</Id>
|
1256
|
+
</Attribute>
|
1257
|
+
</Attributes>
|
1258
|
+
</Cell>
|
1259
|
+
</Cells>
|
1260
|
+
</Row>
|
1261
|
+
<Row>
|
1262
|
+
<RowType>Row</RowType>
|
1263
|
+
<Cells>
|
1264
|
+
<Cell>
|
1265
|
+
<Value>Historical Adjustment (840)</Value>
|
1266
|
+
<Attributes>
|
1267
|
+
<Attribute>
|
1268
|
+
<Value>305b05b3-01f3-4f47-a45d-edfa66ea03e7</Value>
|
1269
|
+
<Id>account</Id>
|
1270
|
+
</Attribute>
|
1271
|
+
</Attributes>
|
1272
|
+
</Cell>
|
1273
|
+
<Cell>
|
1274
|
+
<Attributes>
|
1275
|
+
<Attribute>
|
1276
|
+
<Value>305b05b3-01f3-4f47-a45d-edfa66ea03e7</Value>
|
1277
|
+
<Id>account</Id>
|
1278
|
+
</Attribute>
|
1279
|
+
</Attributes>
|
1280
|
+
</Cell>
|
1281
|
+
<Cell>
|
1282
|
+
<Value>0.00</Value>
|
1283
|
+
<Attributes>
|
1284
|
+
<Attribute>
|
1285
|
+
<Value>305b05b3-01f3-4f47-a45d-edfa66ea03e7</Value>
|
1286
|
+
<Id>account</Id>
|
1287
|
+
</Attribute>
|
1288
|
+
</Attributes>
|
1289
|
+
</Cell>
|
1290
|
+
<Cell>
|
1291
|
+
<Attributes>
|
1292
|
+
<Attribute>
|
1293
|
+
<Value>305b05b3-01f3-4f47-a45d-edfa66ea03e7</Value>
|
1294
|
+
<Id>account</Id>
|
1295
|
+
</Attribute>
|
1296
|
+
</Attributes>
|
1297
|
+
</Cell>
|
1298
|
+
<Cell>
|
1299
|
+
<Value>19212.21</Value>
|
1300
|
+
<Attributes>
|
1301
|
+
<Attribute>
|
1302
|
+
<Value>305b05b3-01f3-4f47-a45d-edfa66ea03e7</Value>
|
1303
|
+
<Id>account</Id>
|
1304
|
+
</Attribute>
|
1305
|
+
</Attributes>
|
1306
|
+
</Cell>
|
1307
|
+
</Cells>
|
1308
|
+
</Row>
|
1309
|
+
<Row>
|
1310
|
+
<RowType>Row</RowType>
|
1311
|
+
<Cells>
|
1312
|
+
<Cell>
|
1313
|
+
<Value>Owner A Funds Introduced (881)</Value>
|
1314
|
+
<Attributes>
|
1315
|
+
<Attribute>
|
1316
|
+
<Value>16e01c0e-4fbd-4488-b4c3-e399903306aa</Value>
|
1317
|
+
<Id>account</Id>
|
1318
|
+
</Attribute>
|
1319
|
+
</Attributes>
|
1320
|
+
</Cell>
|
1321
|
+
<Cell>
|
1322
|
+
<Attributes>
|
1323
|
+
<Attribute>
|
1324
|
+
<Value>16e01c0e-4fbd-4488-b4c3-e399903306aa</Value>
|
1325
|
+
<Id>account</Id>
|
1326
|
+
</Attribute>
|
1327
|
+
</Attributes>
|
1328
|
+
</Cell>
|
1329
|
+
<Cell>
|
1330
|
+
<Value>0.00</Value>
|
1331
|
+
<Attributes>
|
1332
|
+
<Attribute>
|
1333
|
+
<Value>16e01c0e-4fbd-4488-b4c3-e399903306aa</Value>
|
1334
|
+
<Id>account</Id>
|
1335
|
+
</Attribute>
|
1336
|
+
</Attributes>
|
1337
|
+
</Cell>
|
1338
|
+
<Cell>
|
1339
|
+
<Attributes>
|
1340
|
+
<Attribute>
|
1341
|
+
<Value>16e01c0e-4fbd-4488-b4c3-e399903306aa</Value>
|
1342
|
+
<Id>account</Id>
|
1343
|
+
</Attribute>
|
1344
|
+
</Attributes>
|
1345
|
+
</Cell>
|
1346
|
+
<Cell>
|
1347
|
+
<Value>550.00</Value>
|
1348
|
+
<Attributes>
|
1349
|
+
<Attribute>
|
1350
|
+
<Value>16e01c0e-4fbd-4488-b4c3-e399903306aa</Value>
|
1351
|
+
<Id>account</Id>
|
1352
|
+
</Attribute>
|
1353
|
+
</Attributes>
|
1354
|
+
</Cell>
|
1355
|
+
</Cells>
|
1356
|
+
</Row>
|
1357
|
+
<Row>
|
1358
|
+
<RowType>Row</RowType>
|
1359
|
+
<Cells>
|
1360
|
+
<Cell>
|
1361
|
+
<Value>PAYG Withholdings Payable (825)</Value>
|
1362
|
+
<Attributes>
|
1363
|
+
<Attribute>
|
1364
|
+
<Value>4d111d55-1c71-46b4-8cbc-d8b54d8d54c5</Value>
|
1365
|
+
<Id>account</Id>
|
1366
|
+
</Attribute>
|
1367
|
+
</Attributes>
|
1368
|
+
</Cell>
|
1369
|
+
<Cell>
|
1370
|
+
<Attributes>
|
1371
|
+
<Attribute>
|
1372
|
+
<Value>4d111d55-1c71-46b4-8cbc-d8b54d8d54c5</Value>
|
1373
|
+
<Id>account</Id>
|
1374
|
+
</Attribute>
|
1375
|
+
</Attributes>
|
1376
|
+
</Cell>
|
1377
|
+
<Cell>
|
1378
|
+
<Value>3014.00</Value>
|
1379
|
+
<Attributes>
|
1380
|
+
<Attribute>
|
1381
|
+
<Value>4d111d55-1c71-46b4-8cbc-d8b54d8d54c5</Value>
|
1382
|
+
<Id>account</Id>
|
1383
|
+
</Attribute>
|
1384
|
+
</Attributes>
|
1385
|
+
</Cell>
|
1386
|
+
<Cell>
|
1387
|
+
<Attributes>
|
1388
|
+
<Attribute>
|
1389
|
+
<Value>4d111d55-1c71-46b4-8cbc-d8b54d8d54c5</Value>
|
1390
|
+
<Id>account</Id>
|
1391
|
+
</Attribute>
|
1392
|
+
</Attributes>
|
1393
|
+
</Cell>
|
1394
|
+
<Cell>
|
1395
|
+
<Value>9042.00</Value>
|
1396
|
+
<Attributes>
|
1397
|
+
<Attribute>
|
1398
|
+
<Value>4d111d55-1c71-46b4-8cbc-d8b54d8d54c5</Value>
|
1399
|
+
<Id>account</Id>
|
1400
|
+
</Attribute>
|
1401
|
+
</Attributes>
|
1402
|
+
</Cell>
|
1403
|
+
</Cells>
|
1404
|
+
</Row>
|
1405
|
+
</Rows>
|
1406
|
+
</Row>
|
1407
|
+
<Row>
|
1408
|
+
<RowType>Section</RowType>
|
1409
|
+
<Rows>
|
1410
|
+
<Row>
|
1411
|
+
<RowType>SummaryRow</RowType>
|
1412
|
+
<Cells>
|
1413
|
+
<Cell>
|
1414
|
+
<Value>Total</Value>
|
1415
|
+
</Cell>
|
1416
|
+
<Cell>
|
1417
|
+
<Value>33244.04</Value>
|
1418
|
+
</Cell>
|
1419
|
+
<Cell>
|
1420
|
+
<Value>33244.04</Value>
|
1421
|
+
</Cell>
|
1422
|
+
<Cell>
|
1423
|
+
<Value>80938.93</Value>
|
1424
|
+
</Cell>
|
1425
|
+
<Cell>
|
1426
|
+
<Value>80938.93</Value>
|
1427
|
+
</Cell>
|
1428
|
+
</Cells>
|
1429
|
+
</Row>
|
1430
|
+
</Rows>
|
1431
|
+
</Row>
|
1432
|
+
</Rows>
|
1433
|
+
</Report>
|
1434
|
+
</Reports>
|
1435
|
+
</Response>
|