effective_qb_sync 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +94 -0
- data/Rakefile +21 -0
- data/app/controllers/admin/qb_syncs_controller.rb +60 -0
- data/app/controllers/effective/qb_sync_controller.rb +40 -0
- data/app/models/effective/access_denied.rb +17 -0
- data/app/models/effective/datatables/qb_syncs.rb +30 -0
- data/app/models/effective/qb_log.rb +13 -0
- data/app/models/effective/qb_machine.rb +281 -0
- data/app/models/effective/qb_order_item.rb +13 -0
- data/app/models/effective/qb_order_items_form.rb +55 -0
- data/app/models/effective/qb_request.rb +262 -0
- data/app/models/effective/qb_ticket.rb +55 -0
- data/app/models/effective/qbwc_supervisor.rb +89 -0
- data/app/views/admin/qb_syncs/_actions.html.haml +2 -0
- data/app/views/admin/qb_syncs/_qb_item_names.html.haml +9 -0
- data/app/views/admin/qb_syncs/index.html.haml +24 -0
- data/app/views/admin/qb_syncs/instructions.html.haml +136 -0
- data/app/views/admin/qb_syncs/show.html.haml +52 -0
- data/app/views/effective/orders_mailer/qb_sync_error.html.haml +56 -0
- data/app/views/effective/qb_sync/authenticate.erb +12 -0
- data/app/views/effective/qb_sync/clientVersion.erb +8 -0
- data/app/views/effective/qb_sync/closeConnection.erb +8 -0
- data/app/views/effective/qb_sync/connectionError.erb +9 -0
- data/app/views/effective/qb_sync/getLastError.erb +9 -0
- data/app/views/effective/qb_sync/receiveResponseXML.erb +8 -0
- data/app/views/effective/qb_sync/sendRequestXML.erb +8 -0
- data/app/views/effective/qb_sync/serverVersion.erb +8 -0
- data/app/views/effective/qb_web_connector/quickbooks.qwc.erb +12 -0
- data/config/routes.rb +16 -0
- data/db/migrate/01_create_effective_qb_sync.rb.erb +68 -0
- data/lib/effective_qb_sync/engine.rb +42 -0
- data/lib/effective_qb_sync/version.rb +3 -0
- data/lib/effective_qb_sync.rb +42 -0
- data/lib/generators/effective_qb_sync/install_generator.rb +42 -0
- data/lib/generators/templates/effective_qb_sync.rb +61 -0
- data/lib/generators/templates/effective_qb_sync_mailer_preview.rb +39 -0
- data/spec/dummy/README.rdoc +8 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/product.rb +14 -0
- data/spec/dummy/app/models/product_with_float_price.rb +13 -0
- data/spec/dummy/app/models/user.rb +14 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config/application.rb +32 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/devise.rb +254 -0
- data/spec/dummy/config/initializers/effective_addresses.rb +15 -0
- data/spec/dummy/config/initializers/effective_orders.rb +154 -0
- data/spec/dummy/config/initializers/effective_qb_sync.rb +41 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/simple_form.rb +189 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/schema.rb +208 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +90 -0
- data/spec/dummy/log/test.log +1 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/fixtures/qbxml_response_error.xml +6 -0
- data/spec/fixtures/qbxml_response_success.xml +621 -0
- data/spec/models/acts_as_purchasable_spec.rb +131 -0
- data/spec/models/factories_spec.rb +32 -0
- data/spec/models/qb_machine_spec.rb +554 -0
- data/spec/models/qb_request_spec.rb +327 -0
- data/spec/models/qb_ticket_spec.rb +62 -0
- data/spec/spec_helper.rb +45 -0
- data/spec/support/factories.rb +97 -0
- metadata +397 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
File without changes
|
@@ -0,0 +1,621 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<QBXML>
|
3
|
+
<QBXMLMsgsRs>
|
4
|
+
<AccountQueryRs requestID="34" statusCode="0" statusSeverity="Info" statusMessage="Status OK">
|
5
|
+
<AccountRet>
|
6
|
+
<ListID>80000021-1203016871</ListID>
|
7
|
+
<TimeCreated>2008-02-14T14:21:11-05:00</TimeCreated>
|
8
|
+
<TimeModified>2008-02-14T14:21:11-05:00</TimeModified>
|
9
|
+
<EditSequence>1203016871</EditSequence>
|
10
|
+
<Name>Wachovia</Name>
|
11
|
+
<FullName>Wachovia</FullName>
|
12
|
+
<IsActive>true</IsActive>
|
13
|
+
<Sublevel>0</Sublevel>
|
14
|
+
<AccountType>Bank</AccountType>
|
15
|
+
<BankNumber>123422344</BankNumber>
|
16
|
+
<Balance>0.00</Balance>
|
17
|
+
<TotalBalance>0.00</TotalBalance>
|
18
|
+
<CashFlowClassification>NotApplicable</CashFlowClassification>
|
19
|
+
</AccountRet>
|
20
|
+
<AccountRet>
|
21
|
+
<ListID>80000023-1203104744</ListID>
|
22
|
+
<TimeCreated>2008-02-15T14:45:44-05:00</TimeCreated>
|
23
|
+
<TimeModified>2008-02-15T14:45:44-05:00</TimeModified>
|
24
|
+
<EditSequence>1203104744</EditSequence>
|
25
|
+
<Name>Accounts Receivable</Name>
|
26
|
+
<FullName>Accounts Receivable</FullName>
|
27
|
+
<IsActive>true</IsActive>
|
28
|
+
<Sublevel>0</Sublevel>
|
29
|
+
<AccountType>AccountsReceivable</AccountType>
|
30
|
+
<SpecialAccountType>AccountsReceivable</SpecialAccountType>
|
31
|
+
<AccountNumber>11000</AccountNumber>
|
32
|
+
<Desc>Unpaid or unapplied customer invoices and credits</Desc>
|
33
|
+
<Balance>0.00</Balance>
|
34
|
+
<TotalBalance>0.00</TotalBalance>
|
35
|
+
<CashFlowClassification>Operating</CashFlowClassification>
|
36
|
+
</AccountRet>
|
37
|
+
<AccountRet>
|
38
|
+
<ListID>80000020-1203016666</ListID>
|
39
|
+
<TimeCreated>2008-02-14T14:17:46-05:00</TimeCreated>
|
40
|
+
<TimeModified>2008-02-14T14:17:46-05:00</TimeModified>
|
41
|
+
<EditSequence>1203016666</EditSequence>
|
42
|
+
<Name>Undeposited Funds</Name>
|
43
|
+
<FullName>Undeposited Funds</FullName>
|
44
|
+
<IsActive>true</IsActive>
|
45
|
+
<Sublevel>0</Sublevel>
|
46
|
+
<AccountType>OtherCurrentAsset</AccountType>
|
47
|
+
<SpecialAccountType>UndepositedFunds</SpecialAccountType>
|
48
|
+
<AccountNumber>12000</AccountNumber>
|
49
|
+
<Desc>Funds received, but not yet deposited to a bank account</Desc>
|
50
|
+
<Balance>0.00</Balance>
|
51
|
+
<TotalBalance>0.00</TotalBalance>
|
52
|
+
<CashFlowClassification>NotApplicable</CashFlowClassification>
|
53
|
+
</AccountRet>
|
54
|
+
<AccountRet>
|
55
|
+
<ListID>80000005-1203016625</ListID>
|
56
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
57
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
58
|
+
<EditSequence>1203016625</EditSequence>
|
59
|
+
<Name>Accumulated Depreciation</Name>
|
60
|
+
<FullName>Accumulated Depreciation</FullName>
|
61
|
+
<IsActive>true</IsActive>
|
62
|
+
<Sublevel>0</Sublevel>
|
63
|
+
<AccountType>FixedAsset</AccountType>
|
64
|
+
<AccountNumber>17000</AccountNumber>
|
65
|
+
<Desc>Accumulated depreciation on equipment, buildings and improvements</Desc>
|
66
|
+
<Balance>0.00</Balance>
|
67
|
+
<TotalBalance>0.00</TotalBalance>
|
68
|
+
<CashFlowClassification>Investing</CashFlowClassification>
|
69
|
+
</AccountRet>
|
70
|
+
<AccountRet>
|
71
|
+
<ListID>80000004-1203016625</ListID>
|
72
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
73
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
74
|
+
<EditSequence>1203016625</EditSequence>
|
75
|
+
<Name>Furniture and Equipment</Name>
|
76
|
+
<FullName>Furniture and Equipment</FullName>
|
77
|
+
<IsActive>true</IsActive>
|
78
|
+
<Sublevel>0</Sublevel>
|
79
|
+
<AccountType>FixedAsset</AccountType>
|
80
|
+
<AccountNumber>15000</AccountNumber>
|
81
|
+
<Desc>Furniture and equipment with useful life exceeding one year</Desc>
|
82
|
+
<Balance>0.00</Balance>
|
83
|
+
<TotalBalance>0.00</TotalBalance>
|
84
|
+
<CashFlowClassification>Investing</CashFlowClassification>
|
85
|
+
</AccountRet>
|
86
|
+
<AccountRet>
|
87
|
+
<ListID>80000022-1203016871</ListID>
|
88
|
+
<TimeCreated>2008-02-14T14:21:11-05:00</TimeCreated>
|
89
|
+
<TimeModified>2008-02-14T14:21:11-05:00</TimeModified>
|
90
|
+
<EditSequence>1203016871</EditSequence>
|
91
|
+
<Name>Accounts Payable</Name>
|
92
|
+
<FullName>Accounts Payable</FullName>
|
93
|
+
<IsActive>true</IsActive>
|
94
|
+
<Sublevel>0</Sublevel>
|
95
|
+
<AccountType>AccountsPayable</AccountType>
|
96
|
+
<SpecialAccountType>AccountsPayable</SpecialAccountType>
|
97
|
+
<AccountNumber>20000</AccountNumber>
|
98
|
+
<Desc>Unpaid or unapplied vendor bills or credits</Desc>
|
99
|
+
<Balance>0.00</Balance>
|
100
|
+
<TotalBalance>0.00</TotalBalance>
|
101
|
+
<CashFlowClassification>Operating</CashFlowClassification>
|
102
|
+
</AccountRet>
|
103
|
+
<AccountRet>
|
104
|
+
<ListID>80000006-1203016625</ListID>
|
105
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
106
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
107
|
+
<EditSequence>1203016625</EditSequence>
|
108
|
+
<Name>Advance Customer Payments</Name>
|
109
|
+
<FullName>Advance Customer Payments</FullName>
|
110
|
+
<IsActive>true</IsActive>
|
111
|
+
<Sublevel>0</Sublevel>
|
112
|
+
<AccountType>OtherCurrentLiability</AccountType>
|
113
|
+
<AccountNumber>24500</AccountNumber>
|
114
|
+
<Desc>Monies received from customers not yet earned or deposits refundable to customers</Desc>
|
115
|
+
<Balance>0.00</Balance>
|
116
|
+
<TotalBalance>0.00</TotalBalance>
|
117
|
+
<CashFlowClassification>Operating</CashFlowClassification>
|
118
|
+
</AccountRet>
|
119
|
+
<AccountRet>
|
120
|
+
<ListID>8000001F-1203016627</ListID>
|
121
|
+
<TimeCreated>2008-02-14T14:17:07-05:00</TimeCreated>
|
122
|
+
<TimeModified>2008-02-14T14:17:07-05:00</TimeModified>
|
123
|
+
<EditSequence>1203016627</EditSequence>
|
124
|
+
<Name>Payroll Liabilities</Name>
|
125
|
+
<FullName>Payroll Liabilities</FullName>
|
126
|
+
<IsActive>true</IsActive>
|
127
|
+
<Sublevel>0</Sublevel>
|
128
|
+
<AccountType>OtherCurrentLiability</AccountType>
|
129
|
+
<SpecialAccountType>PayrollLiabilities</SpecialAccountType>
|
130
|
+
<AccountNumber>24000</AccountNumber>
|
131
|
+
<Desc>Unpaid payroll liabilities. Amounts withheld or accrued, but not yet paid</Desc>
|
132
|
+
<Balance>0.00</Balance>
|
133
|
+
<TotalBalance>0.00</TotalBalance>
|
134
|
+
<CashFlowClassification>Operating</CashFlowClassification>
|
135
|
+
</AccountRet>
|
136
|
+
<AccountRet>
|
137
|
+
<ListID>8000001C-1203016625</ListID>
|
138
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
139
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
140
|
+
<EditSequence>1203016625</EditSequence>
|
141
|
+
<Name>Members Draw</Name>
|
142
|
+
<FullName>Members Draw</FullName>
|
143
|
+
<IsActive>true</IsActive>
|
144
|
+
<Sublevel>0</Sublevel>
|
145
|
+
<AccountType>Equity</AccountType>
|
146
|
+
<AccountNumber>30700</AccountNumber>
|
147
|
+
<Desc>Monies taken out of the business by the member</Desc>
|
148
|
+
<Balance>0.00</Balance>
|
149
|
+
<TotalBalance>0.00</TotalBalance>
|
150
|
+
<CashFlowClassification>Financing</CashFlowClassification>
|
151
|
+
</AccountRet>
|
152
|
+
<AccountRet>
|
153
|
+
<ListID>8000001D-1203016625</ListID>
|
154
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
155
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
156
|
+
<EditSequence>1203016625</EditSequence>
|
157
|
+
<Name>Members Equity</Name>
|
158
|
+
<FullName>Members Equity</FullName>
|
159
|
+
<IsActive>true</IsActive>
|
160
|
+
<Sublevel>0</Sublevel>
|
161
|
+
<AccountType>Equity</AccountType>
|
162
|
+
<SpecialAccountType>RetainedEarnings</SpecialAccountType>
|
163
|
+
<AccountNumber>32000</AccountNumber>
|
164
|
+
<Desc>Monies invested in the business by the member, and profits kept in company accounts</Desc>
|
165
|
+
<Balance>0.00</Balance>
|
166
|
+
<TotalBalance>0.00</TotalBalance>
|
167
|
+
<CashFlowClassification>Financing</CashFlowClassification>
|
168
|
+
</AccountRet>
|
169
|
+
<AccountRet>
|
170
|
+
<ListID>80000003-1203016625</ListID>
|
171
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
172
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
173
|
+
<EditSequence>1203016625</EditSequence>
|
174
|
+
<Name>Opening Balance Equity</Name>
|
175
|
+
<FullName>Opening Balance Equity</FullName>
|
176
|
+
<IsActive>true</IsActive>
|
177
|
+
<Sublevel>0</Sublevel>
|
178
|
+
<AccountType>Equity</AccountType>
|
179
|
+
<SpecialAccountType>OpeningBalanceEquity</SpecialAccountType>
|
180
|
+
<AccountNumber>30000</AccountNumber>
|
181
|
+
<Desc>Opening balances during setup post to this account. The balance of this account should be zero after completing your setup</Desc>
|
182
|
+
<Balance>0.00</Balance>
|
183
|
+
<TotalBalance>0.00</TotalBalance>
|
184
|
+
<CashFlowClassification>Financing</CashFlowClassification>
|
185
|
+
</AccountRet>
|
186
|
+
<AccountRet>
|
187
|
+
<ListID>80000007-1203016625</ListID>
|
188
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
189
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
190
|
+
<EditSequence>1203016625</EditSequence>
|
191
|
+
<Name>Sales</Name>
|
192
|
+
<FullName>Sales</FullName>
|
193
|
+
<IsActive>true</IsActive>
|
194
|
+
<Sublevel>0</Sublevel>
|
195
|
+
<AccountType>Income</AccountType>
|
196
|
+
<AccountNumber>47900</AccountNumber>
|
197
|
+
<Desc>Gross sales of products and services</Desc>
|
198
|
+
<Balance>0.00</Balance>
|
199
|
+
<TotalBalance>0.00</TotalBalance>
|
200
|
+
<TaxLineInfoRet>
|
201
|
+
<TaxLineID>293</TaxLineID>
|
202
|
+
<TaxLineName>Schedule C: Gross receipts or sales</TaxLineName>
|
203
|
+
</TaxLineInfoRet>
|
204
|
+
<CashFlowClassification>None</CashFlowClassification>
|
205
|
+
</AccountRet>
|
206
|
+
<AccountRet>
|
207
|
+
<ListID>80000008-1203016625</ListID>
|
208
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
209
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
210
|
+
<EditSequence>1203016625</EditSequence>
|
211
|
+
<Name>Subcontracted Services</Name>
|
212
|
+
<FullName>Subcontracted Services</FullName>
|
213
|
+
<IsActive>true</IsActive>
|
214
|
+
<Sublevel>0</Sublevel>
|
215
|
+
<AccountType>CostOfGoodsSold</AccountType>
|
216
|
+
<AccountNumber>53500</AccountNumber>
|
217
|
+
<Desc>Subcontracted services for client projects</Desc>
|
218
|
+
<Balance>0.00</Balance>
|
219
|
+
<TotalBalance>0.00</TotalBalance>
|
220
|
+
<TaxLineInfoRet>
|
221
|
+
<TaxLineID>494</TaxLineID>
|
222
|
+
<TaxLineName>Schedule C: Labor, cost of goods</TaxLineName>
|
223
|
+
</TaxLineInfoRet>
|
224
|
+
<CashFlowClassification>None</CashFlowClassification>
|
225
|
+
</AccountRet>
|
226
|
+
<AccountRet>
|
227
|
+
<ListID>80000009-1203016625</ListID>
|
228
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
229
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
230
|
+
<EditSequence>1203016625</EditSequence>
|
231
|
+
<Name>Advertising and Promotion</Name>
|
232
|
+
<FullName>Advertising and Promotion</FullName>
|
233
|
+
<IsActive>true</IsActive>
|
234
|
+
<Sublevel>0</Sublevel>
|
235
|
+
<AccountType>Expense</AccountType>
|
236
|
+
<AccountNumber>60000</AccountNumber>
|
237
|
+
<Desc>Advertising, marketing, graphic design, and other promotional expenses</Desc>
|
238
|
+
<Balance>0.00</Balance>
|
239
|
+
<TotalBalance>0.00</TotalBalance>
|
240
|
+
<TaxLineInfoRet>
|
241
|
+
<TaxLineID>304</TaxLineID>
|
242
|
+
<TaxLineName>Schedule C: Advertising</TaxLineName>
|
243
|
+
</TaxLineInfoRet>
|
244
|
+
<CashFlowClassification>None</CashFlowClassification>
|
245
|
+
</AccountRet>
|
246
|
+
<AccountRet>
|
247
|
+
<ListID>8000000A-1203016625</ListID>
|
248
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
249
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
250
|
+
<EditSequence>1203016625</EditSequence>
|
251
|
+
<Name>Automobile Expense</Name>
|
252
|
+
<FullName>Automobile Expense</FullName>
|
253
|
+
<IsActive>true</IsActive>
|
254
|
+
<Sublevel>0</Sublevel>
|
255
|
+
<AccountType>Expense</AccountType>
|
256
|
+
<AccountNumber>60200</AccountNumber>
|
257
|
+
<Desc>Fuel, oil, repairs, and other automobile maintenance for business autos</Desc>
|
258
|
+
<Balance>0.00</Balance>
|
259
|
+
<TotalBalance>0.00</TotalBalance>
|
260
|
+
<TaxLineInfoRet>
|
261
|
+
<TaxLineID>306</TaxLineID>
|
262
|
+
<TaxLineName>Schedule C: Car and truck expenses</TaxLineName>
|
263
|
+
</TaxLineInfoRet>
|
264
|
+
<CashFlowClassification>None</CashFlowClassification>
|
265
|
+
</AccountRet>
|
266
|
+
<AccountRet>
|
267
|
+
<ListID>8000000B-1203016625</ListID>
|
268
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
269
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
270
|
+
<EditSequence>1203016625</EditSequence>
|
271
|
+
<Name>Bank Service Charges</Name>
|
272
|
+
<FullName>Bank Service Charges</FullName>
|
273
|
+
<IsActive>true</IsActive>
|
274
|
+
<Sublevel>0</Sublevel>
|
275
|
+
<AccountType>Expense</AccountType>
|
276
|
+
<AccountNumber>60400</AccountNumber>
|
277
|
+
<Desc>Bank account service fees, bad check charges and other bank fees</Desc>
|
278
|
+
<Balance>0.00</Balance>
|
279
|
+
<TotalBalance>0.00</TotalBalance>
|
280
|
+
<TaxLineInfoRet>
|
281
|
+
<TaxLineID>302</TaxLineID>
|
282
|
+
<TaxLineName>Schedule C: Other business expenses</TaxLineName>
|
283
|
+
</TaxLineInfoRet>
|
284
|
+
<CashFlowClassification>None</CashFlowClassification>
|
285
|
+
</AccountRet>
|
286
|
+
<AccountRet>
|
287
|
+
<ListID>8000000C-1203016625</ListID>
|
288
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
289
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
290
|
+
<EditSequence>1203016625</EditSequence>
|
291
|
+
<Name>Computer and Internet Expenses</Name>
|
292
|
+
<FullName>Computer and Internet Expenses</FullName>
|
293
|
+
<IsActive>true</IsActive>
|
294
|
+
<Sublevel>0</Sublevel>
|
295
|
+
<AccountType>Expense</AccountType>
|
296
|
+
<AccountNumber>61700</AccountNumber>
|
297
|
+
<Desc>Computer supplies, off-the-shelf software, online fees, and other computer or internet related expenses</Desc>
|
298
|
+
<Balance>0.00</Balance>
|
299
|
+
<TotalBalance>0.00</TotalBalance>
|
300
|
+
<TaxLineInfoRet>
|
301
|
+
<TaxLineID>302</TaxLineID>
|
302
|
+
<TaxLineName>Schedule C: Other business expenses</TaxLineName>
|
303
|
+
</TaxLineInfoRet>
|
304
|
+
<CashFlowClassification>None</CashFlowClassification>
|
305
|
+
</AccountRet>
|
306
|
+
<AccountRet>
|
307
|
+
<ListID>8000000D-1203016625</ListID>
|
308
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
309
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
310
|
+
<EditSequence>1203016625</EditSequence>
|
311
|
+
<Name>Depreciation Expense</Name>
|
312
|
+
<FullName>Depreciation Expense</FullName>
|
313
|
+
<IsActive>true</IsActive>
|
314
|
+
<Sublevel>0</Sublevel>
|
315
|
+
<AccountType>Expense</AccountType>
|
316
|
+
<AccountNumber>62400</AccountNumber>
|
317
|
+
<Desc>Depreciation on equipment, buildings and improvements</Desc>
|
318
|
+
<Balance>0.00</Balance>
|
319
|
+
<TotalBalance>0.00</TotalBalance>
|
320
|
+
<CashFlowClassification>None</CashFlowClassification>
|
321
|
+
</AccountRet>
|
322
|
+
<AccountRet>
|
323
|
+
<ListID>8000000E-1203016625</ListID>
|
324
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
325
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
326
|
+
<EditSequence>1203016625</EditSequence>
|
327
|
+
<Name>Dues and Subscriptions</Name>
|
328
|
+
<FullName>Dues and Subscriptions</FullName>
|
329
|
+
<IsActive>true</IsActive>
|
330
|
+
<Sublevel>0</Sublevel>
|
331
|
+
<AccountType>Expense</AccountType>
|
332
|
+
<AccountNumber>62500</AccountNumber>
|
333
|
+
<Desc>Subscriptions and membership dues for civic, service, professional, trade organizations</Desc>
|
334
|
+
<Balance>0.00</Balance>
|
335
|
+
<TotalBalance>0.00</TotalBalance>
|
336
|
+
<TaxLineInfoRet>
|
337
|
+
<TaxLineID>302</TaxLineID>
|
338
|
+
<TaxLineName>Schedule C: Other business expenses</TaxLineName>
|
339
|
+
</TaxLineInfoRet>
|
340
|
+
<CashFlowClassification>None</CashFlowClassification>
|
341
|
+
</AccountRet>
|
342
|
+
<AccountRet>
|
343
|
+
<ListID>8000000F-1203016625</ListID>
|
344
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
345
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
346
|
+
<EditSequence>1203016625</EditSequence>
|
347
|
+
<Name>Equipment Rental</Name>
|
348
|
+
<FullName>Equipment Rental</FullName>
|
349
|
+
<IsActive>true</IsActive>
|
350
|
+
<Sublevel>0</Sublevel>
|
351
|
+
<AccountType>Expense</AccountType>
|
352
|
+
<AccountNumber>62600</AccountNumber>
|
353
|
+
<Desc>Rent paid for rented equipment used for business</Desc>
|
354
|
+
<Balance>0.00</Balance>
|
355
|
+
<TotalBalance>0.00</TotalBalance>
|
356
|
+
<TaxLineInfoRet>
|
357
|
+
<TaxLineID>299</TaxLineID>
|
358
|
+
<TaxLineName>Schedule C: Rent/lease vehicles, equip.</TaxLineName>
|
359
|
+
</TaxLineInfoRet>
|
360
|
+
<CashFlowClassification>None</CashFlowClassification>
|
361
|
+
</AccountRet>
|
362
|
+
<AccountRet>
|
363
|
+
<ListID>80000010-1203016625</ListID>
|
364
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
365
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
366
|
+
<EditSequence>1203016625</EditSequence>
|
367
|
+
<Name>Insurance Expense</Name>
|
368
|
+
<FullName>Insurance Expense</FullName>
|
369
|
+
<IsActive>true</IsActive>
|
370
|
+
<Sublevel>0</Sublevel>
|
371
|
+
<AccountType>Expense</AccountType>
|
372
|
+
<AccountNumber>63300</AccountNumber>
|
373
|
+
<Desc>Insurance expenses</Desc>
|
374
|
+
<Balance>0.00</Balance>
|
375
|
+
<TotalBalance>0.00</TotalBalance>
|
376
|
+
<TaxLineInfoRet>
|
377
|
+
<TaxLineID>310</TaxLineID>
|
378
|
+
<TaxLineName>Schedule C: Insurance, other than health</TaxLineName>
|
379
|
+
</TaxLineInfoRet>
|
380
|
+
<CashFlowClassification>None</CashFlowClassification>
|
381
|
+
</AccountRet>
|
382
|
+
<AccountRet>
|
383
|
+
<ListID>80000011-1203016625</ListID>
|
384
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
385
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
386
|
+
<EditSequence>1203016625</EditSequence>
|
387
|
+
<Name>Interest Expense</Name>
|
388
|
+
<FullName>Interest Expense</FullName>
|
389
|
+
<IsActive>true</IsActive>
|
390
|
+
<Sublevel>0</Sublevel>
|
391
|
+
<AccountType>Expense</AccountType>
|
392
|
+
<AccountNumber>63400</AccountNumber>
|
393
|
+
<Desc>Interest payments on business loans, credit card balances, or other business debt</Desc>
|
394
|
+
<Balance>0.00</Balance>
|
395
|
+
<TotalBalance>0.00</TotalBalance>
|
396
|
+
<TaxLineInfoRet>
|
397
|
+
<TaxLineID>312</TaxLineID>
|
398
|
+
<TaxLineName>Schedule C: Interest expense, other</TaxLineName>
|
399
|
+
</TaxLineInfoRet>
|
400
|
+
<CashFlowClassification>None</CashFlowClassification>
|
401
|
+
</AccountRet>
|
402
|
+
<AccountRet>
|
403
|
+
<ListID>80000012-1203016625</ListID>
|
404
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
405
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
406
|
+
<EditSequence>1203016625</EditSequence>
|
407
|
+
<Name>Meals and Entertainment</Name>
|
408
|
+
<FullName>Meals and Entertainment</FullName>
|
409
|
+
<IsActive>true</IsActive>
|
410
|
+
<Sublevel>0</Sublevel>
|
411
|
+
<AccountType>Expense</AccountType>
|
412
|
+
<AccountNumber>64300</AccountNumber>
|
413
|
+
<Desc>Business meals and entertainment expenses, including travel-related meals (may have limited deductibility)</Desc>
|
414
|
+
<Balance>0.00</Balance>
|
415
|
+
<TotalBalance>0.00</TotalBalance>
|
416
|
+
<TaxLineInfoRet>
|
417
|
+
<TaxLineID>294</TaxLineID>
|
418
|
+
<TaxLineName>Schedule C: Meals and entertainment</TaxLineName>
|
419
|
+
</TaxLineInfoRet>
|
420
|
+
<CashFlowClassification>None</CashFlowClassification>
|
421
|
+
</AccountRet>
|
422
|
+
<AccountRet>
|
423
|
+
<ListID>80000013-1203016625</ListID>
|
424
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
425
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
426
|
+
<EditSequence>1203016625</EditSequence>
|
427
|
+
<Name>Office Supplies</Name>
|
428
|
+
<FullName>Office Supplies</FullName>
|
429
|
+
<IsActive>true</IsActive>
|
430
|
+
<Sublevel>0</Sublevel>
|
431
|
+
<AccountType>Expense</AccountType>
|
432
|
+
<AccountNumber>64900</AccountNumber>
|
433
|
+
<Desc>Office supplies expense</Desc>
|
434
|
+
<Balance>0.00</Balance>
|
435
|
+
<TotalBalance>0.00</TotalBalance>
|
436
|
+
<TaxLineInfoRet>
|
437
|
+
<TaxLineID>313</TaxLineID>
|
438
|
+
<TaxLineName>Schedule C: Office expenses</TaxLineName>
|
439
|
+
</TaxLineInfoRet>
|
440
|
+
<CashFlowClassification>None</CashFlowClassification>
|
441
|
+
</AccountRet>
|
442
|
+
<AccountRet>
|
443
|
+
<ListID>8000001E-1203016627</ListID>
|
444
|
+
<TimeCreated>2008-02-14T14:17:07-05:00</TimeCreated>
|
445
|
+
<TimeModified>2008-02-14T14:17:07-05:00</TimeModified>
|
446
|
+
<EditSequence>1203016627</EditSequence>
|
447
|
+
<Name>Payroll Expenses</Name>
|
448
|
+
<FullName>Payroll Expenses</FullName>
|
449
|
+
<IsActive>true</IsActive>
|
450
|
+
<Sublevel>0</Sublevel>
|
451
|
+
<AccountType>Expense</AccountType>
|
452
|
+
<SpecialAccountType>PayrollExpenses</SpecialAccountType>
|
453
|
+
<AccountNumber>66000</AccountNumber>
|
454
|
+
<Desc>Payroll expenses</Desc>
|
455
|
+
<Balance>0.00</Balance>
|
456
|
+
<TotalBalance>0.00</TotalBalance>
|
457
|
+
<TaxLineInfoRet>
|
458
|
+
<TaxLineID>297</TaxLineID>
|
459
|
+
<TaxLineName>Schedule C: Wages paid</TaxLineName>
|
460
|
+
</TaxLineInfoRet>
|
461
|
+
<CashFlowClassification>None</CashFlowClassification>
|
462
|
+
</AccountRet>
|
463
|
+
<AccountRet>
|
464
|
+
<ListID>80000014-1203016625</ListID>
|
465
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
466
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
467
|
+
<EditSequence>1203016625</EditSequence>
|
468
|
+
<Name>Postage and Delivery</Name>
|
469
|
+
<FullName>Postage and Delivery</FullName>
|
470
|
+
<IsActive>true</IsActive>
|
471
|
+
<Sublevel>0</Sublevel>
|
472
|
+
<AccountType>Expense</AccountType>
|
473
|
+
<AccountNumber>66500</AccountNumber>
|
474
|
+
<Desc>Postage, courier, and pickup and delivery services</Desc>
|
475
|
+
<Balance>0.00</Balance>
|
476
|
+
<TotalBalance>0.00</TotalBalance>
|
477
|
+
<TaxLineInfoRet>
|
478
|
+
<TaxLineID>302</TaxLineID>
|
479
|
+
<TaxLineName>Schedule C: Other business expenses</TaxLineName>
|
480
|
+
</TaxLineInfoRet>
|
481
|
+
<CashFlowClassification>None</CashFlowClassification>
|
482
|
+
</AccountRet>
|
483
|
+
<AccountRet>
|
484
|
+
<ListID>80000015-1203016625</ListID>
|
485
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
486
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
487
|
+
<EditSequence>1203016625</EditSequence>
|
488
|
+
<Name>Professional Fees</Name>
|
489
|
+
<FullName>Professional Fees</FullName>
|
490
|
+
<IsActive>true</IsActive>
|
491
|
+
<Sublevel>0</Sublevel>
|
492
|
+
<AccountType>Expense</AccountType>
|
493
|
+
<AccountNumber>66700</AccountNumber>
|
494
|
+
<Desc>Payments to accounting professionals and attorneys for accounting or legal services</Desc>
|
495
|
+
<Balance>0.00</Balance>
|
496
|
+
<TotalBalance>0.00</TotalBalance>
|
497
|
+
<TaxLineInfoRet>
|
498
|
+
<TaxLineID>298</TaxLineID>
|
499
|
+
<TaxLineName>Schedule C: Legal and professional fees</TaxLineName>
|
500
|
+
</TaxLineInfoRet>
|
501
|
+
<CashFlowClassification>None</CashFlowClassification>
|
502
|
+
</AccountRet>
|
503
|
+
<AccountRet>
|
504
|
+
<ListID>80000016-1203016625</ListID>
|
505
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
506
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
507
|
+
<EditSequence>1203016625</EditSequence>
|
508
|
+
<Name>Rent Expense</Name>
|
509
|
+
<FullName>Rent Expense</FullName>
|
510
|
+
<IsActive>true</IsActive>
|
511
|
+
<Sublevel>0</Sublevel>
|
512
|
+
<AccountType>Expense</AccountType>
|
513
|
+
<AccountNumber>67100</AccountNumber>
|
514
|
+
<Desc>Rent paid for company offices or other structures used in the business</Desc>
|
515
|
+
<Balance>0.00</Balance>
|
516
|
+
<TotalBalance>0.00</TotalBalance>
|
517
|
+
<TaxLineInfoRet>
|
518
|
+
<TaxLineID>300</TaxLineID>
|
519
|
+
<TaxLineName>Schedule C: Rent/lease other bus. prop.</TaxLineName>
|
520
|
+
</TaxLineInfoRet>
|
521
|
+
<CashFlowClassification>None</CashFlowClassification>
|
522
|
+
</AccountRet>
|
523
|
+
<AccountRet>
|
524
|
+
<ListID>80000017-1203016625</ListID>
|
525
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
526
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
527
|
+
<EditSequence>1203016625</EditSequence>
|
528
|
+
<Name>Repairs and Maintenance</Name>
|
529
|
+
<FullName>Repairs and Maintenance</FullName>
|
530
|
+
<IsActive>true</IsActive>
|
531
|
+
<Sublevel>0</Sublevel>
|
532
|
+
<AccountType>Expense</AccountType>
|
533
|
+
<AccountNumber>67200</AccountNumber>
|
534
|
+
<Desc>Incidental repairs and maintenance of business assets that do not add to the value or appreciably prolong its life</Desc>
|
535
|
+
<Balance>0.00</Balance>
|
536
|
+
<TotalBalance>0.00</TotalBalance>
|
537
|
+
<TaxLineInfoRet>
|
538
|
+
<TaxLineID>315</TaxLineID>
|
539
|
+
<TaxLineName>Schedule C: Repairs and maintenance</TaxLineName>
|
540
|
+
</TaxLineInfoRet>
|
541
|
+
<CashFlowClassification>None</CashFlowClassification>
|
542
|
+
</AccountRet>
|
543
|
+
<AccountRet>
|
544
|
+
<ListID>80000018-1203016625</ListID>
|
545
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
546
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
547
|
+
<EditSequence>1203016625</EditSequence>
|
548
|
+
<Name>Telephone Expense</Name>
|
549
|
+
<FullName>Telephone Expense</FullName>
|
550
|
+
<IsActive>true</IsActive>
|
551
|
+
<Sublevel>0</Sublevel>
|
552
|
+
<AccountType>Expense</AccountType>
|
553
|
+
<AccountNumber>68100</AccountNumber>
|
554
|
+
<Desc>Telephone and long distance charges, faxing, and other fees Not equipment purchases</Desc>
|
555
|
+
<Balance>0.00</Balance>
|
556
|
+
<TotalBalance>0.00</TotalBalance>
|
557
|
+
<TaxLineInfoRet>
|
558
|
+
<TaxLineID>318</TaxLineID>
|
559
|
+
<TaxLineName>Schedule C: Utilities</TaxLineName>
|
560
|
+
</TaxLineInfoRet>
|
561
|
+
<CashFlowClassification>None</CashFlowClassification>
|
562
|
+
</AccountRet>
|
563
|
+
<AccountRet>
|
564
|
+
<ListID>80000019-1203016625</ListID>
|
565
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
566
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
567
|
+
<EditSequence>1203016625</EditSequence>
|
568
|
+
<Name>Travel Expense</Name>
|
569
|
+
<FullName>Travel Expense</FullName>
|
570
|
+
<IsActive>true</IsActive>
|
571
|
+
<Sublevel>0</Sublevel>
|
572
|
+
<AccountType>Expense</AccountType>
|
573
|
+
<AccountNumber>68400</AccountNumber>
|
574
|
+
<Desc>Business-related travel expenses including airline tickets, taxi fares, hotel and other travel expenses</Desc>
|
575
|
+
<Balance>0.00</Balance>
|
576
|
+
<TotalBalance>0.00</TotalBalance>
|
577
|
+
<TaxLineInfoRet>
|
578
|
+
<TaxLineID>317</TaxLineID>
|
579
|
+
<TaxLineName>Schedule C: Travel</TaxLineName>
|
580
|
+
</TaxLineInfoRet>
|
581
|
+
<CashFlowClassification>None</CashFlowClassification>
|
582
|
+
</AccountRet>
|
583
|
+
<AccountRet>
|
584
|
+
<ListID>8000001A-1203016625</ListID>
|
585
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
586
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
587
|
+
<EditSequence>1203016625</EditSequence>
|
588
|
+
<Name>Utilities</Name>
|
589
|
+
<FullName>Utilities</FullName>
|
590
|
+
<IsActive>true</IsActive>
|
591
|
+
<Sublevel>0</Sublevel>
|
592
|
+
<AccountType>Expense</AccountType>
|
593
|
+
<AccountNumber>68600</AccountNumber>
|
594
|
+
<Desc>Water, electricity, garbage, and other basic utilities expenses</Desc>
|
595
|
+
<Balance>0.00</Balance>
|
596
|
+
<TotalBalance>0.00</TotalBalance>
|
597
|
+
<TaxLineInfoRet>
|
598
|
+
<TaxLineID>318</TaxLineID>
|
599
|
+
<TaxLineName>Schedule C: Utilities</TaxLineName>
|
600
|
+
</TaxLineInfoRet>
|
601
|
+
<CashFlowClassification>None</CashFlowClassification>
|
602
|
+
</AccountRet>
|
603
|
+
<AccountRet>
|
604
|
+
<ListID>8000001B-1203016625</ListID>
|
605
|
+
<TimeCreated>2008-02-14T14:17:05-05:00</TimeCreated>
|
606
|
+
<TimeModified>2008-02-14T14:17:05-05:00</TimeModified>
|
607
|
+
<EditSequence>1203016625</EditSequence>
|
608
|
+
<Name>Ask My Accountant</Name>
|
609
|
+
<FullName>Ask My Accountant</FullName>
|
610
|
+
<IsActive>true</IsActive>
|
611
|
+
<Sublevel>0</Sublevel>
|
612
|
+
<AccountType>OtherExpense</AccountType>
|
613
|
+
<AccountNumber>80000</AccountNumber>
|
614
|
+
<Desc>Transactions to be discussed with accountant, consultant, or tax preparer</Desc>
|
615
|
+
<Balance>0.00</Balance>
|
616
|
+
<TotalBalance>0.00</TotalBalance>
|
617
|
+
<CashFlowClassification>None</CashFlowClassification>
|
618
|
+
</AccountRet>
|
619
|
+
</AccountQueryRs>
|
620
|
+
</QBXMLMsgsRs>
|
621
|
+
</QBXML>
|