xeroizer-3-pre-beta 3.0.0.pre.beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (429) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +41 -0
  3. data/README.md +34 -0
  4. data/lib/class_level_inheritable_attributes.rb +28 -0
  5. data/lib/xeroizer.rb +117 -0
  6. data/lib/xeroizer/application_http_proxy.rb +30 -0
  7. data/lib/xeroizer/ca-certificates.crt +2694 -0
  8. data/lib/xeroizer/configuration.rb +19 -0
  9. data/lib/xeroizer/connection.rb +31 -0
  10. data/lib/xeroizer/exceptions.rb +161 -0
  11. data/lib/xeroizer/generic_application.rb +90 -0
  12. data/lib/xeroizer/http.rb +160 -0
  13. data/lib/xeroizer/http_encoding_helper.rb +49 -0
  14. data/lib/xeroizer/http_response.rb +154 -0
  15. data/lib/xeroizer/logging.rb +8 -0
  16. data/lib/xeroizer/models/account.rb +72 -0
  17. data/lib/xeroizer/models/accounts_payable.rb +13 -0
  18. data/lib/xeroizer/models/accounts_receivable.rb +13 -0
  19. data/lib/xeroizer/models/address.rb +41 -0
  20. data/lib/xeroizer/models/allocation.rb +13 -0
  21. data/lib/xeroizer/models/attachment.rb +95 -0
  22. data/lib/xeroizer/models/balances.rb +17 -0
  23. data/lib/xeroizer/models/bank_account.rb +13 -0
  24. data/lib/xeroizer/models/bank_transaction.rb +95 -0
  25. data/lib/xeroizer/models/bank_transfer.rb +28 -0
  26. data/lib/xeroizer/models/batch_payment.rb +24 -0
  27. data/lib/xeroizer/models/batch_payments.rb +14 -0
  28. data/lib/xeroizer/models/bills.rb +13 -0
  29. data/lib/xeroizer/models/branding_theme.rb +62 -0
  30. data/lib/xeroizer/models/contact.rb +77 -0
  31. data/lib/xeroizer/models/contact_group.rb +64 -0
  32. data/lib/xeroizer/models/contact_person.rb +20 -0
  33. data/lib/xeroizer/models/contact_purchases_tracking_category.rb +19 -0
  34. data/lib/xeroizer/models/contact_sales_tracking_category.rb +19 -0
  35. data/lib/xeroizer/models/credit_note.rb +164 -0
  36. data/lib/xeroizer/models/currency.rb +30 -0
  37. data/lib/xeroizer/models/employee.rb +73 -0
  38. data/lib/xeroizer/models/expense_claim.rb +29 -0
  39. data/lib/xeroizer/models/external_link.rb +16 -0
  40. data/lib/xeroizer/models/from_bank_account.rb +13 -0
  41. data/lib/xeroizer/models/invoice.rb +229 -0
  42. data/lib/xeroizer/models/invoice_reminder.rb +19 -0
  43. data/lib/xeroizer/models/item.rb +39 -0
  44. data/lib/xeroizer/models/item_purchase_details.rb +20 -0
  45. data/lib/xeroizer/models/item_sales_details.rb +19 -0
  46. data/lib/xeroizer/models/journal.rb +27 -0
  47. data/lib/xeroizer/models/journal_line.rb +29 -0
  48. data/lib/xeroizer/models/journal_line_tracking_category.rb +21 -0
  49. data/lib/xeroizer/models/line_amount_type.rb +11 -0
  50. data/lib/xeroizer/models/line_item.rb +64 -0
  51. data/lib/xeroizer/models/line_item_sum.rb +21 -0
  52. data/lib/xeroizer/models/manual_journal.rb +49 -0
  53. data/lib/xeroizer/models/manual_journal_line.rb +28 -0
  54. data/lib/xeroizer/models/online_invoice.rb +37 -0
  55. data/lib/xeroizer/models/option.rb +18 -0
  56. data/lib/xeroizer/models/organisation.rb +85 -0
  57. data/lib/xeroizer/models/overpayment.rb +40 -0
  58. data/lib/xeroizer/models/payment.rb +48 -0
  59. data/lib/xeroizer/models/payment_service.rb +22 -0
  60. data/lib/xeroizer/models/payment_terms.rb +16 -0
  61. data/lib/xeroizer/models/payroll/address.rb +53 -0
  62. data/lib/xeroizer/models/payroll/bank_account.rb +35 -0
  63. data/lib/xeroizer/models/payroll/benefit_line.rb +26 -0
  64. data/lib/xeroizer/models/payroll/benefit_type.rb +45 -0
  65. data/lib/xeroizer/models/payroll/deduction_line.rb +32 -0
  66. data/lib/xeroizer/models/payroll/deduction_type.rb +49 -0
  67. data/lib/xeroizer/models/payroll/earnings_line.rb +39 -0
  68. data/lib/xeroizer/models/payroll/earnings_type.rb +53 -0
  69. data/lib/xeroizer/models/payroll/employee.rb +67 -0
  70. data/lib/xeroizer/models/payroll/leave_application.rb +27 -0
  71. data/lib/xeroizer/models/payroll/leave_line.rb +30 -0
  72. data/lib/xeroizer/models/payroll/leave_period.rb +15 -0
  73. data/lib/xeroizer/models/payroll/pay_items.rb +22 -0
  74. data/lib/xeroizer/models/payroll/pay_run.rb +33 -0
  75. data/lib/xeroizer/models/payroll/pay_schedule.rb +40 -0
  76. data/lib/xeroizer/models/payroll/pay_template.rb +24 -0
  77. data/lib/xeroizer/models/payroll/payment_method.rb +24 -0
  78. data/lib/xeroizer/models/payroll/paystub.rb +44 -0
  79. data/lib/xeroizer/models/payroll/reimbursement_line.rb +21 -0
  80. data/lib/xeroizer/models/payroll/reimbursement_type.rb +22 -0
  81. data/lib/xeroizer/models/payroll/salary_and_wage.rb +29 -0
  82. data/lib/xeroizer/models/payroll/super_line.rb +40 -0
  83. data/lib/xeroizer/models/payroll/tax_declaration.rb +50 -0
  84. data/lib/xeroizer/models/payroll/time_off_line.rb +20 -0
  85. data/lib/xeroizer/models/payroll/time_off_type.rb +32 -0
  86. data/lib/xeroizer/models/payroll/work_location.rb +25 -0
  87. data/lib/xeroizer/models/phone.rb +26 -0
  88. data/lib/xeroizer/models/prepayment.rb +41 -0
  89. data/lib/xeroizer/models/purchase_order.rb +49 -0
  90. data/lib/xeroizer/models/receipt.rb +39 -0
  91. data/lib/xeroizer/models/repeating_invoice.rb +80 -0
  92. data/lib/xeroizer/models/sales.rb +13 -0
  93. data/lib/xeroizer/models/schedule.rb +34 -0
  94. data/lib/xeroizer/models/tax_component.rb +13 -0
  95. data/lib/xeroizer/models/tax_rate.rb +36 -0
  96. data/lib/xeroizer/models/to_bank_account.rb +13 -0
  97. data/lib/xeroizer/models/tracking_category.rb +23 -0
  98. data/lib/xeroizer/models/tracking_category_child.rb +20 -0
  99. data/lib/xeroizer/models/user.rb +26 -0
  100. data/lib/xeroizer/oauth.rb +162 -0
  101. data/lib/xeroizer/oauth2.rb +66 -0
  102. data/lib/xeroizer/oauth2_application.rb +42 -0
  103. data/lib/xeroizer/partner_application.rb +52 -0
  104. data/lib/xeroizer/payroll_application.rb +33 -0
  105. data/lib/xeroizer/private_application.rb +26 -0
  106. data/lib/xeroizer/public_application.rb +22 -0
  107. data/lib/xeroizer/record/application_helper.rb +32 -0
  108. data/lib/xeroizer/record/base.rb +203 -0
  109. data/lib/xeroizer/record/base_model.rb +253 -0
  110. data/lib/xeroizer/record/base_model_http_proxy.rb +141 -0
  111. data/lib/xeroizer/record/model_definition_helper.rb +101 -0
  112. data/lib/xeroizer/record/payroll_base.rb +29 -0
  113. data/lib/xeroizer/record/payroll_base_model.rb +29 -0
  114. data/lib/xeroizer/record/record_association_helper.rb +141 -0
  115. data/lib/xeroizer/record/validation_helper.rb +75 -0
  116. data/lib/xeroizer/record/validators/associated_validator.rb +34 -0
  117. data/lib/xeroizer/record/validators/block_validator.rb +22 -0
  118. data/lib/xeroizer/record/validators/inclusion_of_validator.rb +22 -0
  119. data/lib/xeroizer/record/validators/length_of_validator.rb +23 -0
  120. data/lib/xeroizer/record/validators/presence_of_validator.rb +19 -0
  121. data/lib/xeroizer/record/validators/validator.rb +33 -0
  122. data/lib/xeroizer/record/xml_helper.rb +144 -0
  123. data/lib/xeroizer/report/aged_receivables_by_contact.rb +42 -0
  124. data/lib/xeroizer/report/base.rb +42 -0
  125. data/lib/xeroizer/report/cell.rb +32 -0
  126. data/lib/xeroizer/report/cell_xml_helper.rb +74 -0
  127. data/lib/xeroizer/report/factory.rb +54 -0
  128. data/lib/xeroizer/report/row/header.rb +12 -0
  129. data/lib/xeroizer/report/row/row.rb +48 -0
  130. data/lib/xeroizer/report/row/section.rb +10 -0
  131. data/lib/xeroizer/report/row/summary.rb +9 -0
  132. data/lib/xeroizer/report/row/xml_helper.rb +77 -0
  133. data/lib/xeroizer/report/xml_helper.rb +58 -0
  134. data/lib/xeroizer/response.rb +74 -0
  135. data/lib/xeroizer/version.rb +3 -0
  136. data/test/acceptance/about_creating_bank_transactions_test.rb +170 -0
  137. data/test/acceptance/about_creating_prepayment_test.rb +41 -0
  138. data/test/acceptance/about_fetching_bank_transactions_test.rb +53 -0
  139. data/test/acceptance/about_online_invoice_test.rb +25 -0
  140. data/test/acceptance/acceptance_test.rb +77 -0
  141. data/test/acceptance/bank_transaction_reference_data.rb +32 -0
  142. data/test/acceptance/bank_transfer_test.rb +21 -0
  143. data/test/acceptance/bulk_operations_test.rb +50 -0
  144. data/test/acceptance/connections_test.rb +11 -0
  145. data/test/stub_responses/accounts.xml +589 -0
  146. data/test/stub_responses/api_exception.xml +153 -0
  147. data/test/stub_responses/bad_request.json +6 -0
  148. data/test/stub_responses/bogus_oauth_error +1 -0
  149. data/test/stub_responses/branding_themes.xml +20 -0
  150. data/test/stub_responses/connections.json +16 -0
  151. data/test/stub_responses/contact.xml +54 -0
  152. data/test/stub_responses/contact_with_details.xml +79 -0
  153. data/test/stub_responses/contacts.xml +0 -0
  154. data/test/stub_responses/create_credit_note.xml +104 -0
  155. data/test/stub_responses/create_invoice.xml +64 -0
  156. data/test/stub_responses/credit_note.xml +75 -0
  157. data/test/stub_responses/credit_note_not_found_error.xml +1 -0
  158. data/test/stub_responses/credit_notes.xml +169 -0
  159. data/test/stub_responses/currencies.xml +12 -0
  160. data/test/stub_responses/employees.xml +29 -0
  161. data/test/stub_responses/expired_oauth2_token.json +6 -0
  162. data/test/stub_responses/generic_response_error.json +6 -0
  163. data/test/stub_responses/invalid_api_key_error.xml +1 -0
  164. data/test/stub_responses/invalid_consumer_key +1 -0
  165. data/test/stub_responses/invalid_oauth2_request_token.json +6 -0
  166. data/test/stub_responses/invalid_request_token +1 -0
  167. data/test/stub_responses/invalid_tenant_header.json +6 -0
  168. data/test/stub_responses/invoice.xml +84 -0
  169. data/test/stub_responses/invoice_not_found_error.xml +1 -0
  170. data/test/stub_responses/invoices.xml +1899 -0
  171. data/test/stub_responses/items.xml +112 -0
  172. data/test/stub_responses/manual_journal.xml +45 -0
  173. data/test/stub_responses/manual_journals.xml +40 -0
  174. data/test/stub_responses/nonce_used +1 -0
  175. data/test/stub_responses/object_not_found.json +6 -0
  176. data/test/stub_responses/organisation.xml +55 -0
  177. data/test/stub_responses/organisations.xml +35 -0
  178. data/test/stub_responses/payment_service.xml +15 -0
  179. data/test/stub_responses/payments.xml +1121 -0
  180. data/test/stub_responses/prepayments.xml +27 -0
  181. data/test/stub_responses/rate_limit_exceeded +1 -0
  182. data/test/stub_responses/records/contact-043892a1-aef1-4c18-88d8-b8ccb6d31466.xml +38 -0
  183. data/test/stub_responses/records/contact-09664078-efe2-4a88-89a5-67eac9b0047b.xml +40 -0
  184. data/test/stub_responses/records/contact-0a4cf37b-a1a8-4753-9ee2-f9207f63a8ff.xml +48 -0
  185. data/test/stub_responses/records/contact-0e74f929-11b9-4255-a035-1fdfe573e676.xml +40 -0
  186. data/test/stub_responses/records/contact-0f471ca5-15c9-405e-a1b9-7cc35194b673.xml +38 -0
  187. data/test/stub_responses/records/contact-13cd4c47-baa6-4f07-93f6-6442310df4bf.xml +47 -0
  188. data/test/stub_responses/records/contact-158a2667-82ee-43bf-8f33-a6cc9524092d.xml +38 -0
  189. data/test/stub_responses/records/contact-17465072-6fa3-40bf-bc42-97765d9e1bea.xml +38 -0
  190. data/test/stub_responses/records/contact-1975b0ed-b7ba-4c61-bae8-2aa6d78b0dee.xml +39 -0
  191. data/test/stub_responses/records/contact-1b2be6e9-8d58-4da9-aaf8-4fe5471b653c.xml +53 -0
  192. data/test/stub_responses/records/contact-1c40da58-fe1d-4e97-b729-b2abdae94d9e.xml +38 -0
  193. data/test/stub_responses/records/contact-258176a5-c622-4394-9c94-6f88c3ea12e5.xml +40 -0
  194. data/test/stub_responses/records/contact-299dd3a0-a417-4a37-8a04-2f55e91963e5.xml +40 -0
  195. data/test/stub_responses/records/contact-2be39278-5154-4ed1-8eb0-676f25acfc66.xml +40 -0
  196. data/test/stub_responses/records/contact-2e58cff6-488c-4a32-884b-baf848010229.xml +40 -0
  197. data/test/stub_responses/records/contact-2faccd41-935e-40aa-b74e-e2fc28ac34c3.xml +38 -0
  198. data/test/stub_responses/records/contact-31af01e7-2ca7-45b9-a500-b02db996568e.xml +38 -0
  199. data/test/stub_responses/records/contact-344f1113-a25b-4344-b82e-bedeacc17c8e.xml +40 -0
  200. data/test/stub_responses/records/contact-3e776c4b-ea9e-4bb1-96be-6b0c7a71a37f.xml +39 -0
  201. data/test/stub_responses/records/contact-3fc1fc6c-e5ff-4e40-b6f3-7eb535637d87.xml +38 -0
  202. data/test/stub_responses/records/contact-416ab20c-5357-4beb-a740-e8d175d71efb.xml +38 -0
  203. data/test/stub_responses/records/contact-41a42865-f15a-4fa1-b643-47877608f557.xml +54 -0
  204. data/test/stub_responses/records/contact-42771b60-19a7-4692-af81-dd9f9b9362d4.xml +43 -0
  205. data/test/stub_responses/records/contact-451ceb28-9610-44c9-8f35-3225482f2413.xml +40 -0
  206. data/test/stub_responses/records/contact-4ab343ad-1ebb-4afe-9d48-1814a93c2081.xml +38 -0
  207. data/test/stub_responses/records/contact-4bb77692-42d4-4565-85a0-8849eb85e039.xml +39 -0
  208. data/test/stub_responses/records/contact-4dec292f-3ab7-46a8-83e4-5fb5eac42c7f.xml +40 -0
  209. data/test/stub_responses/records/contact-4e2f192e-8397-4d4d-97ca-a4fc5ac531bf.xml +38 -0
  210. data/test/stub_responses/records/contact-5188c17c-7786-4436-ad6e-9da2997386d0.xml +40 -0
  211. data/test/stub_responses/records/contact-52442753-b1c4-40b7-9b79-c33997de5837.xml +40 -0
  212. data/test/stub_responses/records/contact-565acaa9-e7f3-4fbf-80c3-16b081ddae10.xml +38 -0
  213. data/test/stub_responses/records/contact-571a2414-81ff-4f8f-8498-d91d83793131.xml +44 -0
  214. data/test/stub_responses/records/contact-58697449-85ef-46ae-83fc-6a9446f037fb.xml +40 -0
  215. data/test/stub_responses/records/contact-58bf2ae3-5144-4628-8de2-e165ac2bcdc6.xml +40 -0
  216. data/test/stub_responses/records/contact-5d41dafd-eb7e-42c1-bd5a-ba3be1da0960.xml +38 -0
  217. data/test/stub_responses/records/contact-5f005a09-5ce4-4fb4-8096-e69c18be636e.xml +38 -0
  218. data/test/stub_responses/records/contact-60d578d9-3e10-4aef-b5dc-9d9fd60a3633.xml +47 -0
  219. data/test/stub_responses/records/contact-62392126-dba4-4a75-b907-5875ebf75259.xml +40 -0
  220. data/test/stub_responses/records/contact-642c7fb5-e8e5-48e1-a710-39a18c6c3217.xml +40 -0
  221. data/test/stub_responses/records/contact-64aebf9c-bb89-4b38-b99b-405bd1ece6fd.xml +40 -0
  222. data/test/stub_responses/records/contact-64eedbc9-1fa0-485a-837f-705f23188161.xml +38 -0
  223. data/test/stub_responses/records/contact-65e96c9f-1595-4653-9a8a-2a36d49223c2.xml +40 -0
  224. data/test/stub_responses/records/contact-67d26b93-ccb4-4890-9bf1-284b70ea755d.xml +38 -0
  225. data/test/stub_responses/records/contact-69d3e538-44b3-4e00-a5f6-7dddcb6e0656.xml +40 -0
  226. data/test/stub_responses/records/contact-6a8450bc-f81a-4bb0-a8f6-aa4afe9497c7.xml +40 -0
  227. data/test/stub_responses/records/contact-6c70e424-41d6-4b9b-af3e-b3a9f3589106.xml +40 -0
  228. data/test/stub_responses/records/contact-6de0b0cf-560c-4503-aab3-e1543c329deb.xml +54 -0
  229. data/test/stub_responses/records/contact-72dd6a02-396e-42a2-a4d6-cc3fa75dfece.xml +41 -0
  230. data/test/stub_responses/records/contact-755f1475-d255-43a8-bedc-5ea7fd26c71f.xml +51 -0
  231. data/test/stub_responses/records/contact-78a9d0a0-3d8c-4f84-af3e-f260bf4a9dc0.xml +38 -0
  232. data/test/stub_responses/records/contact-79aa39ca-22b0-42c2-9026-78757a29d665.xml +42 -0
  233. data/test/stub_responses/records/contact-804f4140-5978-48fe-ba20-b56e5b834b18.xml +40 -0
  234. data/test/stub_responses/records/contact-812d4f28-1681-4241-8e34-d15c5520ba35.xml +38 -0
  235. data/test/stub_responses/records/contact-860b99a9-0958-4c8d-a98f-bb1f092b16bb.xml +60 -0
  236. data/test/stub_responses/records/contact-87c8da45-97cc-46be-b170-398da0eacfb8.xml +40 -0
  237. data/test/stub_responses/records/contact-8a154a19-6c6c-404b-bbc9-6deae2d18251.xml +38 -0
  238. data/test/stub_responses/records/contact-8bb6931d-2865-44e9-9a23-ed1fb9c7a46c.xml +40 -0
  239. data/test/stub_responses/records/contact-936c9759-01da-4063-b472-424ab9f48212.xml +38 -0
  240. data/test/stub_responses/records/contact-9d12a994-9640-4b75-95cc-3de1e9d0ef09.xml +38 -0
  241. data/test/stub_responses/records/contact-9fe59245-1fbb-4157-93c3-dc97388f3746.xml +40 -0
  242. data/test/stub_responses/records/contact-a06a7225-6f8a-4522-8400-c534dd43a16e.xml +40 -0
  243. data/test/stub_responses/records/contact-a76a85fe-73a2-46fa-aba7-791f36103cdb.xml +40 -0
  244. data/test/stub_responses/records/contact-a93b5f40-0346-4d21-9181-431e129911c0.xml +40 -0
  245. data/test/stub_responses/records/contact-abf272dd-6b1d-4829-af88-c57bf55855e3.xml +38 -0
  246. data/test/stub_responses/records/contact-ad24c33b-256b-4157-ad56-cbcf0e8db7b1.xml +47 -0
  247. data/test/stub_responses/records/contact-b107129d-f4c9-438e-9573-64b778527f4a.xml +40 -0
  248. data/test/stub_responses/records/contact-b233288a-aa26-4b26-9fc7-779d797dd56f.xml +40 -0
  249. data/test/stub_responses/records/contact-b2b5333a-2546-4975-891f-d71a8a640d23.xml +38 -0
  250. data/test/stub_responses/records/contact-b4d149bf-1823-4bd2-96da-9032388c9686.xml +40 -0
  251. data/test/stub_responses/records/contact-b78d4fd1-4306-4d83-a0b9-61458d1c53a2.xml +40 -0
  252. data/test/stub_responses/records/contact-b7d108a8-d5f7-4f16-a7c9-26eaed98e8de.xml +40 -0
  253. data/test/stub_responses/records/contact-baeed0f3-7989-4874-99b3-59f23032cb73.xml +38 -0
  254. data/test/stub_responses/records/contact-bc51a3a1-b7f6-46ca-ac9e-19b87e6ca100.xml +40 -0
  255. data/test/stub_responses/records/contact-be9f3aab-52f5-4d9c-94b4-87f7d9e5ee8b.xml +38 -0
  256. data/test/stub_responses/records/contact-c135f994-01e4-427b-9e15-acfe8a477c16.xml +49 -0
  257. data/test/stub_responses/records/contact-c14edf75-15e4-4a9c-86e4-f52e2fe7cfa4.xml +40 -0
  258. data/test/stub_responses/records/contact-ca9b9abc-c2dc-4221-8101-31f464d314cc.xml +44 -0
  259. data/test/stub_responses/records/contact-cc4db604-9ed8-4eef-8a29-51b5b70496a0.xml +38 -0
  260. data/test/stub_responses/records/contact-cce9b044-be4a-43b3-9dc7-c027d8dd35b2.xml +38 -0
  261. data/test/stub_responses/records/contact-d0cd2c4f-18a0-4f7c-a32a-2db00f29d298.xml +43 -0
  262. data/test/stub_responses/records/contact-d6851dc2-9ed9-4515-bc0b-810b09c06a6a.xml +38 -0
  263. data/test/stub_responses/records/contact-d6a384fb-f46f-41a3-8ac7-b7bc9e0b5efa.xml +46 -0
  264. data/test/stub_responses/records/contact-d74e61cf-2ad0-4f0d-b9d1-6a808e3f70cf.xml +40 -0
  265. data/test/stub_responses/records/contact-d9ab0f61-3b56-4e2b-be39-f33c11bd99e3.xml +40 -0
  266. data/test/stub_responses/records/contact-dbb1f0b5-a71b-4458-8462-104acd0fec6b.xml +38 -0
  267. data/test/stub_responses/records/contact-dd981bd6-40dd-496d-a282-bf7d3391b8b9.xml +40 -0
  268. data/test/stub_responses/records/contact-e1826204-cc0a-42a5-a6d0-4b352d9d5953.xml +40 -0
  269. data/test/stub_responses/records/contact-e2d955db-f366-42dd-87f7-fbdb4da2306f.xml +40 -0
  270. data/test/stub_responses/records/contact-e32e2130-3d27-443a-8313-48fffa03cf53.xml +40 -0
  271. data/test/stub_responses/records/contact-e3a68332-d322-4816-8678-73a537c8cd33.xml +38 -0
  272. data/test/stub_responses/records/contact-e6ac76a3-ca32-4fa1-8ef9-6a4bf8b0ec2a.xml +40 -0
  273. data/test/stub_responses/records/contact-e6ca965d-7c48-480e-be39-e847307f474a.xml +38 -0
  274. data/test/stub_responses/records/contact-e77d1f20-2e8e-46ec-9a10-50335a216724.xml +40 -0
  275. data/test/stub_responses/records/contact-e8b98c13-a424-41d2-ba0e-7b7621411e7a.xml +38 -0
  276. data/test/stub_responses/records/contact-e8e9a2c2-3e7e-48ed-8528-c3d61b28f276.xml +39 -0
  277. data/test/stub_responses/records/contact-eb43fcc6-87ec-4a0a-b243-d718bee4e2cb.xml +38 -0
  278. data/test/stub_responses/records/contact-ef6f54c1-eb45-4956-b8cd-1be82ad665f2.xml +43 -0
  279. data/test/stub_responses/records/contact-efdb3600-f233-42e2-8f18-ce7e2a95e4b1.xml +38 -0
  280. data/test/stub_responses/records/contact-f7eca431-5c97-4d24-93fd-004bb8a6c644.xml +40 -0
  281. data/test/stub_responses/records/contact-fb078879-5d6d-474f-825f-61dc90689349.xml +38 -0
  282. data/test/stub_responses/records/contact-fc39b273-4aa2-4785-99ca-24672f6c0000.xml +38 -0
  283. data/test/stub_responses/records/contact-fc9ec3a6-a2fe-4300-a8cb-ca8a0b3662e0.xml +40 -0
  284. data/test/stub_responses/records/contact-fdf96102-7491-44b6-bf4d-7a77ff25f890.xml +40 -0
  285. data/test/stub_responses/records/contact-fe61ead1-8afc-4f0b-beda-066620227aad.xml +38 -0
  286. data/test/stub_responses/records/credit_note-371cd138-1e5c-4ec1-a8c6-a1c10e8bdab1.xml +73 -0
  287. data/test/stub_responses/records/credit_note-3bffc09b-79f2-490d-b91b-c59b700b43a4.xml +95 -0
  288. data/test/stub_responses/records/credit_note-43c678ee-f357-48e2-b192-b6e3634762f9.xml +94 -0
  289. data/test/stub_responses/records/credit_note-482c018b-d329-4e05-9b4f-7a4cfc695aa0.xml +77 -0
  290. data/test/stub_responses/records/credit_note-4f67130a-749a-4ee6-98b2-743adbc11245.xml +62 -0
  291. data/test/stub_responses/records/credit_note-50e98404-2fba-4031-af67-8ba4bb227c44.xml +77 -0
  292. data/test/stub_responses/records/credit_note-7df8949c-b71f-40c0-bbcf-39f2f450f286.xml +75 -0
  293. data/test/stub_responses/records/credit_note-b356e488-2678-4be4-ad4b-d294df2d48d6.xml +78 -0
  294. data/test/stub_responses/records/invoice-0032f627-3156-4d30-9b1c-4d3b994dc921.xml +84 -0
  295. data/test/stub_responses/records/invoice-00c9511b-24b9-4190-a90a-8abf2fe9f4a0.xml +76 -0
  296. data/test/stub_responses/records/invoice-024d7994-a26c-4c20-9894-13934840fc31.xml +74 -0
  297. data/test/stub_responses/records/invoice-0e64a623-c2a1-446a-93ed-eb897f118cbc.xml +97 -0
  298. data/test/stub_responses/records/invoice-15e88e57-2554-4496-a18e-eb3f5c622345.xml +75 -0
  299. data/test/stub_responses/records/invoice-166f0588-d0ba-458c-b28a-8edd4c8fc463.xml +75 -0
  300. data/test/stub_responses/records/invoice-1d1ba340-afa2-4f4c-8ff7-a147bda9a47b.xml +93 -0
  301. data/test/stub_responses/records/invoice-290ef4c4-baec-492b-b4dd-c102826470ae.xml +87 -0
  302. data/test/stub_responses/records/invoice-30a87092-31b5-4a2c-831e-327486533dd2.xml +79 -0
  303. data/test/stub_responses/records/invoice-30dbd181-72a8-43df-b392-4241bf43d5fc.xml +79 -0
  304. data/test/stub_responses/records/invoice-33e4123e-7cdd-4f05-9a0a-eb8adeb2b868.xml +94 -0
  305. data/test/stub_responses/records/invoice-387db692-26ac-47e6-b6cc-015343809bda.xml +75 -0
  306. data/test/stub_responses/records/invoice-3b28bf11-ed2f-4cf4-8e9e-fcae730cc292.xml +91 -0
  307. data/test/stub_responses/records/invoice-3fcb9847-b350-412e-ab90-7d9d774ad881.xml +91 -0
  308. data/test/stub_responses/records/invoice-440613e4-4785-4eff-9ba1-c432816cf8c7.xml +78 -0
  309. data/test/stub_responses/records/invoice-4602eda6-abe9-448e-b65f-ae6bea21f0eb.xml +98 -0
  310. data/test/stub_responses/records/invoice-46441f63-873f-4cdc-a278-b8fe516f3abb.xml +94 -0
  311. data/test/stub_responses/records/invoice-4ad1ec01-f4a3-41d7-bbb4-d2ab2fec8e65.xml +74 -0
  312. data/test/stub_responses/records/invoice-4b9afceb-f7c7-4e64-8aac-7b009971fd52.xml +86 -0
  313. data/test/stub_responses/records/invoice-4edbf6d5-4e92-43af-bedd-7effc0b86833.xml +70 -0
  314. data/test/stub_responses/records/invoice-4fad1af2-b871-4ac5-a15a-3c5e32d2e2c4.xml +93 -0
  315. data/test/stub_responses/records/invoice-52ee4d67-cae4-462c-adb2-182c39017f3d.xml +83 -0
  316. data/test/stub_responses/records/invoice-54585f46-c1a0-4432-bd4f-c1fae2fba59b.xml +67 -0
  317. data/test/stub_responses/records/invoice-5613938b-9e27-472e-92ae-3b038b669d10.xml +87 -0
  318. data/test/stub_responses/records/invoice-5aa9451d-95d1-4f95-a966-bbab2573f71c.xml +75 -0
  319. data/test/stub_responses/records/invoice-5aadcd34-01a9-4b8d-a2bb-d7cc1de9fa45.xml +89 -0
  320. data/test/stub_responses/records/invoice-5f6deadf-36a2-495a-9980-ceb11e8af9a9.xml +85 -0
  321. data/test/stub_responses/records/invoice-625ffe1b-f5d8-438e-a376-981de5f5a733.xml +77 -0
  322. data/test/stub_responses/records/invoice-64cd559e-8e03-46af-b461-8555285cee71.xml +86 -0
  323. data/test/stub_responses/records/invoice-666f8dbb-bc9a-476c-8ec4-4665d7f83190.xml +63 -0
  324. data/test/stub_responses/records/invoice-66fbe37f-49b1-43fd-97ed-85114022cd2f.xml +79 -0
  325. data/test/stub_responses/records/invoice-673dd7cc-beb7-4697-83d4-0c47cb400cc2.xml +95 -0
  326. data/test/stub_responses/records/invoice-69fc971e-9b37-41c5-9c87-174330f22343.xml +66 -0
  327. data/test/stub_responses/records/invoice-70e6db69-e5a4-42c7-a397-aa3212c2945f.xml +75 -0
  328. data/test/stub_responses/records/invoice-762aa45d-4632-45b5-8087-b4f47690665e.xml +54 -0
  329. data/test/stub_responses/records/invoice-766d1289-b440-4675-a656-1a0612ecac77.xml +76 -0
  330. data/test/stub_responses/records/invoice-76bcb361-f93b-4513-b312-5a4af306d276.xml +67 -0
  331. data/test/stub_responses/records/invoice-76e3f056-479f-417c-a72b-f3d767899b87.xml +91 -0
  332. data/test/stub_responses/records/invoice-77b338ef-ecc0-4b95-a0d7-2617b0054611.xml +114 -0
  333. data/test/stub_responses/records/invoice-7be9956d-5316-4f6b-a66a-d355b3f159b2.xml +84 -0
  334. data/test/stub_responses/records/invoice-7dae876a-b424-436b-a4e6-17b3fdeec80c.xml +91 -0
  335. data/test/stub_responses/records/invoice-7e862d93-8dab-4856-8b0c-d844e09d750f.xml +68 -0
  336. data/test/stub_responses/records/invoice-803f70b0-56d9-4157-9787-41df271777a0.xml +84 -0
  337. data/test/stub_responses/records/invoice-86102312-aa3f-438c-9938-6840f4d8dda6.xml +75 -0
  338. data/test/stub_responses/records/invoice-8694c9c5-7097-4449-a708-b8c1982921a4.xml +69 -0
  339. data/test/stub_responses/records/invoice-86d6e00f-ef56-49f7-9a54-796ccd5ca057.xml +85 -0
  340. data/test/stub_responses/records/invoice-88e77f0f-54a5-4efc-a979-7e22223cc4d7.xml +66 -0
  341. data/test/stub_responses/records/invoice-8b0ccb6a-d9b7-4da5-8360-ef7fb157b5aa.xml +66 -0
  342. data/test/stub_responses/records/invoice-935fc854-8037-4111-8d91-993010c331cc.xml +74 -0
  343. data/test/stub_responses/records/invoice-95ef3000-c764-4ba9-a66a-b6e2d161f839.xml +62 -0
  344. data/test/stub_responses/records/invoice-962ef33f-c9d2-4602-9b9f-93a02bea23b3.xml +93 -0
  345. data/test/stub_responses/records/invoice-9868b472-1983-48e9-8edf-7e81ddf2c03a.xml +85 -0
  346. data/test/stub_responses/records/invoice-9a448e9b-a9fa-4a8b-98f5-6dc892a37374.xml +62 -0
  347. data/test/stub_responses/records/invoice-a1d04a14-96a8-4067-a0ff-8136990a354f.xml +91 -0
  348. data/test/stub_responses/records/invoice-a3bc62ef-f11b-4a9c-a4f9-a342bda371b5.xml +66 -0
  349. data/test/stub_responses/records/invoice-a6894ca0-60ee-4d45-9dd4-b44fcba46ec5.xml +90 -0
  350. data/test/stub_responses/records/invoice-a77268ce-74b2-483d-a2b3-70dbdc9e49d2.xml +78 -0
  351. data/test/stub_responses/records/invoice-a9f765e6-b9bc-4505-a47b-fb3ecb327e7b.xml +88 -0
  352. data/test/stub_responses/records/invoice-aa0173af-8707-4e7f-8dde-4c7a357bd312.xml +109 -0
  353. data/test/stub_responses/records/invoice-ab63738a-370a-43a5-bfa3-620d684e66d0.xml +83 -0
  354. data/test/stub_responses/records/invoice-b0344791-5a8a-40dd-a208-d99a461a6c10.xml +84 -0
  355. data/test/stub_responses/records/invoice-b1e53910-473c-46a3-b3cb-38ece571220e.xml +76 -0
  356. data/test/stub_responses/records/invoice-b2c02d0b-41a8-4d4d-97d7-014c78b3547d.xml +93 -0
  357. data/test/stub_responses/records/invoice-b75b3928-ab72-4424-8b93-9cdbbde4cd72.xml +90 -0
  358. data/test/stub_responses/records/invoice-bcd8a71f-aa31-4d0f-8a01-13ea26363ddf.xml +94 -0
  359. data/test/stub_responses/records/invoice-bfbb7c45-de02-45e7-b065-d9863ecfb0d8.xml +66 -0
  360. data/test/stub_responses/records/invoice-c12aff7e-12bf-4185-8702-460929f19674.xml +77 -0
  361. data/test/stub_responses/records/invoice-c3380b96-976d-4b3e-8b26-8d01eb6a3742.xml +87 -0
  362. data/test/stub_responses/records/invoice-c963f2b0-cbe1-4abd-9ccc-7e512c942068.xml +67 -0
  363. data/test/stub_responses/records/invoice-cba46b29-3788-4158-b668-ab10160ccbfe.xml +78 -0
  364. data/test/stub_responses/records/invoice-d62646b9-d0a9-4fdb-9561-756a8b7eba45.xml +63 -0
  365. data/test/stub_responses/records/invoice-dba2f021-f149-4191-a126-5351d587ab0e.xml +75 -0
  366. data/test/stub_responses/records/invoice-de5d9c29-21b3-4342-958b-ed72c4bd7ab0.xml +108 -0
  367. data/test/stub_responses/records/invoice-e3d96555-2876-4364-a46a-7551a4f52611.xml +123 -0
  368. data/test/stub_responses/records/invoice-e4a0afbd-aea0-450b-ae23-0ce921e84a77.xml +102 -0
  369. data/test/stub_responses/records/invoice-e9cb9ecb-58ef-43a8-bd20-69a85338142d.xml +76 -0
  370. data/test/stub_responses/records/invoice-ec9a6f67-7128-4a63-8ba3-5e516f455f9b.xml +94 -0
  371. data/test/stub_responses/records/invoice-ed0f2587-84fc-4aef-bc4b-b1a262e24484.xml +81 -0
  372. data/test/stub_responses/records/invoice-f362ca53-8ade-4047-865a-bb64bee5863d.xml +74 -0
  373. data/test/stub_responses/records/invoice-f571c38b-5be1-41e1-ad5a-ff6184284beb.xml +114 -0
  374. data/test/stub_responses/records/invoice-f5832195-5cd3-4660-ad3f-b73d9c64f263.xml +85 -0
  375. data/test/stub_responses/records/invoice-f9c857eb-64cd-4235-a078-d04b52c77ea7.xml +76 -0
  376. data/test/stub_responses/records/manual_journal-4765d07b-aa03-4e56-9166-50661958c864.xml +38 -0
  377. data/test/stub_responses/records/manual_journal-53fc5558-5b76-4ecd-ae5c-c4af3ccde87c.xml +31 -0
  378. data/test/stub_responses/records/manual_journal-bb6cfcfc-4500-4475-bd3a-93ee512428e0.xml +31 -0
  379. data/test/stub_responses/records/manual_journal-f00a355b-7374-445c-886b-0437bea4095c.xml +45 -0
  380. data/test/stub_responses/records/prepayment-7d3619b1-82cc-405b-8f44-9d4f9a787a8a.xml +92 -0
  381. data/test/stub_responses/records/repeating_invoice-ad3550bc-1ae0-45c0-a782-48c6d2061127.xml +43 -0
  382. data/test/stub_responses/refresh_responses.rb +29 -0
  383. data/test/stub_responses/repeating_invoices.xml +43 -0
  384. data/test/stub_responses/reports/trial_balance.xml +1435 -0
  385. data/test/stub_responses/tax_rates.xml +198 -0
  386. data/test/stub_responses/token_expired +1 -0
  387. data/test/stub_responses/tracking_categories.xml +27 -0
  388. data/test/stub_responses/unknown_error.xml +1 -0
  389. data/test/stub_responses/users.xml +17 -0
  390. data/test/test_helper.rb +72 -0
  391. data/test/unit/generic_application_test.rb +52 -0
  392. data/test/unit/http_test.rb +302 -0
  393. data/test/unit/models/address_test.rb +92 -0
  394. data/test/unit/models/bank_transaction_model_parsing_test.rb +133 -0
  395. data/test/unit/models/bank_transaction_test.rb +44 -0
  396. data/test/unit/models/bank_transaction_validation_test.rb +115 -0
  397. data/test/unit/models/contact_test.rb +132 -0
  398. data/test/unit/models/credit_note_test.rb +37 -0
  399. data/test/unit/models/employee_test.rb +43 -0
  400. data/test/unit/models/invoice_test.rb +133 -0
  401. data/test/unit/models/journal_line_test.rb +22 -0
  402. data/test/unit/models/journal_test.rb +44 -0
  403. data/test/unit/models/line_item_sum_test.rb +25 -0
  404. data/test/unit/models/line_item_test.rb +59 -0
  405. data/test/unit/models/manual_journal_test.rb +25 -0
  406. data/test/unit/models/organisation_test.rb +52 -0
  407. data/test/unit/models/payment_service_test.rb +29 -0
  408. data/test/unit/models/phone_test.rb +31 -0
  409. data/test/unit/models/prepayment_test.rb +21 -0
  410. data/test/unit/models/repeating_invoice_test.rb +36 -0
  411. data/test/unit/models/tax_rate_test.rb +132 -0
  412. data/test/unit/oauth2_test.rb +171 -0
  413. data/test/unit/oauth_config_test.rb +20 -0
  414. data/test/unit/oauth_test.rb +179 -0
  415. data/test/unit/private_application_test.rb +20 -0
  416. data/test/unit/record/base_model_test.rb +58 -0
  417. data/test/unit/record/base_test.rb +174 -0
  418. data/test/unit/record/block_validator_test.rb +125 -0
  419. data/test/unit/record/connection_test.rb +60 -0
  420. data/test/unit/record/model_definition_test.rb +165 -0
  421. data/test/unit/record/parse_params_test.rb +59 -0
  422. data/test/unit/record/parse_where_hash_test.rb +63 -0
  423. data/test/unit/record/record_association_test.rb +93 -0
  424. data/test/unit/record/validators_test.rb +228 -0
  425. data/test/unit/record_definition_test.rb +27 -0
  426. data/test/unit/report_definition_test.rb +26 -0
  427. data/test/unit/report_test.rb +154 -0
  428. data/test/unit_test_helper.rb +16 -0
  429. metadata +1024 -0
@@ -0,0 +1,29 @@
1
+ require File.join(File.dirname(__FILE__), '..', '..', 'lib', 'xeroizer')
2
+
3
+ client = Xeroizer::PrivateApplication.new(ARGV[0], ARGV[1], ARGV[2])
4
+
5
+ base_path = File.expand_path(File.dirname(__FILE__))
6
+
7
+ if ARGV[3]
8
+ models = [ARGV[3]]
9
+ else
10
+ models = %w(Account BrandingTheme Contact CreditNote Currency Employee Invoice Item ManualJournal Organisation Payment TaxRate TrackingCategory)
11
+ end
12
+
13
+ models.each do | model_name |
14
+ model = client.send(model_name.to_sym)
15
+
16
+ # List
17
+ records = model.all
18
+ File.open("#{base_path}/#{model_name.underscore.pluralize}.xml", "w") { | fp | fp.write model.response.response_xml }
19
+
20
+ if %w(Contact CreditNote Invoice ManualJournal).include?(model_name)
21
+ records.each do | summary_record |
22
+ record = model.find(summary_record.id)
23
+ File.open("#{base_path}/records/#{model_name.underscore}-#{record.id}.xml", "w") { | fp | fp.write model.response.response_xml }
24
+ end
25
+
26
+ record = model.find(records.first.id)
27
+ File.open("#{base_path}/#{model_name.underscore.singularize}.xml", "w") { | fp | fp.write model.response.response_xml }
28
+ end
29
+ end
@@ -0,0 +1,43 @@
1
+ <Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
+ <Id>a70214d6-fbee-4a3a-89d6-57cfdb387a69</Id>
3
+ <Status>OK</Status>
4
+ <ProviderName>Test App</ProviderName>
5
+ <DateTimeUTC>2011-02-14T01:54:32.2566964Z</DateTimeUTC>
6
+ <RepeatingInvoices>
7
+ <RepeatingInvoice>
8
+ <Contact>
9
+ <ContactID>9b9ba9e5-e907-4b4e-8210-54d82b0aa479</ContactID>
10
+ <Name>PowerDirect</Name>
11
+ </Contact>
12
+ <Status>DRAFT</Status>
13
+ <LineAmountTypes>Inclusive</LineAmountTypes>
14
+ <LineItems>
15
+ <LineItem>
16
+ <Description>Monthly electricity</Description>
17
+ <UnitAmount>78.26</UnitAmount>
18
+ <TaxType>INPUT2</TaxType>
19
+ <TaxAmount>11.74</TaxAmount>
20
+ <LineAmount>78.26</LineAmount>
21
+ <AccountCode>445</AccountCode>
22
+ <Quantity>1.0000</Quantity>
23
+ </LineItem>
24
+ </LineItems>
25
+ <SubTotal>78.26</SubTotal>
26
+ <TotalTax>11.74</TotalTax>
27
+ <Total>90.00</Total>
28
+ <CurrencyCode>NZD</CurrencyCode>
29
+ <Schedule>
30
+ <Period>1</Period>
31
+ <Unit>MONTHLY</Unit>
32
+ <DueDate>10</DueDate>
33
+ <DueDateType>OFFOLLOWINGMONTH</DueDateType>
34
+ <StartDate>2013-01-21T00:00:00</StartDate>
35
+ <NextScheduledDate>2014-03-23T00:00:00</NextScheduledDate>
36
+ </Schedule>
37
+ <RepeatingInvoiceID>ad3550bc-1ae0-45c0-a782-48c6d2061127</RepeatingInvoiceID>
38
+ <Type>ACCPAY</Type>
39
+ <Reference>RPT445-1</Reference>
40
+ <HasAttachments>false</HasAttachments>
41
+ </RepeatingInvoice>
42
+ </RepeatingInvoices>
43
+ </Response>
@@ -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 &amp; 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 &amp; 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 &amp; 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>