OnePica_AvaTax - Version 2.6.8

Version Notes

Fixed price displaying

Download this release

Release Info

Developer Astound Commerce
Extension OnePica_AvaTax
Version 2.6.8
Comparing to
See all releases


Code changes from version 2.6.7 to 2.6.8

app/code/community/OnePica/AvaTax/Helper/GiftWrapping/Data.php ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * OnePica_AvaTax
4
+ * NOTICE OF LICENSE
5
+ * This source file is subject to the Open Software License (OSL 3.0), a
6
+ * copy of which is available through the world-wide-web at this URL:
7
+ * http://opensource.org/licenses/osl-3.0.php
8
+ *
9
+ * @category OnePica
10
+ * @package OnePica_AvaTax
11
+ * @author OnePica Codemaster <codemaster@onepica.com>
12
+ * @copyright Copyright (c) 2015 One Pica, Inc.
13
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
14
+ */
15
+
16
+ /**
17
+ * Class OnePica_AvaTax_Helper_GiftWrapping_Data
18
+ */
19
+ class OnePica_AvaTax_Helper_GiftWrapping_Data extends Enterprise_GiftWrapping_Helper_Data
20
+ {
21
+ /**
22
+ * Check ability to display prices including tax for gift wrapping in shopping cart
23
+ *
24
+ * @param Mage_Core_Model_Store|int $store
25
+ * @return bool
26
+ */
27
+ public function displayCartWrappingIncludeTaxPrice($store = null)
28
+ {
29
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
30
+ return false;
31
+ }
32
+
33
+ return parent::displayCartWrappingIncludeTaxPrice($store);
34
+ }
35
+
36
+ /**
37
+ * Check ability to display prices excluding tax for gift wrapping in shopping cart
38
+ *
39
+ * @param Mage_Core_Model_Store|int $store
40
+ * @return bool
41
+ */
42
+ public function displayCartWrappingExcludeTaxPrice($store = null)
43
+ {
44
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
45
+ return true;
46
+ }
47
+
48
+ return parent::displayCartWrappingExcludeTaxPrice($store);
49
+ }
50
+
51
+ /**
52
+ * Check ability to display both prices for gift wrapping in shopping cart
53
+ *
54
+ * @param Mage_Core_Model_Store|int $store
55
+ * @return bool
56
+ */
57
+ public function displayCartWrappingBothPrices($store = null)
58
+ {
59
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
60
+ return false;
61
+ }
62
+
63
+ return parent::displayCartWrappingBothPrices($store);
64
+ }
65
+
66
+ /**
67
+ * Check ability to display prices including tax for printed card in shopping cart
68
+ *
69
+ * @param Mage_Core_Model_Store|int $store
70
+ * @return bool
71
+ */
72
+ public function displayCartCardIncludeTaxPrice($store = null)
73
+ {
74
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
75
+ return false;
76
+ }
77
+
78
+ return parent::displayCartCardIncludeTaxPrice($store);
79
+ }
80
+
81
+ /**
82
+ * Check ability to display both prices for printed card in shopping cart
83
+ *
84
+ * @param Mage_Core_Model_Store|int $store
85
+ * @return bool
86
+ */
87
+ public function displayCartCardBothPrices($store = null)
88
+ {
89
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
90
+ return false;
91
+ }
92
+
93
+ return parent::displayCartCardBothPrices($store);
94
+ }
95
+
96
+ /**
97
+ * Check ability to display prices including tax for gift wrapping in backend sales
98
+ *
99
+ * @param Mage_Core_Model_Store|int $store
100
+ * @return bool
101
+ */
102
+ public function displaySalesWrappingIncludeTaxPrice($store = null)
103
+ {
104
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
105
+ return false;
106
+ }
107
+
108
+ return parent::displaySalesWrappingIncludeTaxPrice($store);
109
+ }
110
+
111
+ /**
112
+ * Check ability to display prices excluding tax for gift wrapping in backend sales
113
+ *
114
+ * @param Mage_Core_Model_Store|int $store
115
+ * @return bool
116
+ */
117
+ public function displaySalesWrappingExcludeTaxPrice($store = null)
118
+ {
119
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
120
+ return true;
121
+ }
122
+
123
+ return parent::displaySalesWrappingExcludeTaxPrice($store);
124
+ }
125
+
126
+ /**
127
+ * Check ability to display both prices for gift wrapping in backend sales
128
+ *
129
+ * @param Mage_Core_Model_Store|int $store
130
+ * @return bool
131
+ */
132
+ public function displaySalesWrappingBothPrices($store = null)
133
+ {
134
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
135
+ return false;
136
+ }
137
+
138
+ return parent::displaySalesWrappingBothPrices($store);
139
+ }
140
+
141
+ /**
142
+ * Check ability to display prices including tax for printed card in backend sales
143
+ *
144
+ * @param Mage_Core_Model_Store|int $store
145
+ * @return bool
146
+ */
147
+ public function displaySalesCardIncludeTaxPrice($store = null)
148
+ {
149
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
150
+ return false;
151
+ }
152
+
153
+ return parent::displaySalesCardIncludeTaxPrice($store);
154
+ }
155
+
156
+ /**
157
+ * Check ability to display both prices for printed card in backend sales
158
+ *
159
+ * @param Mage_Core_Model_Store|int $store
160
+ * @return bool
161
+ */
162
+ public function displaySalesCardBothPrices($store = null)
163
+ {
164
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
165
+ return false;
166
+ }
167
+
168
+ return parent::displaySalesCardBothPrices($store);
169
+ }
170
+
171
+ /**
172
+ * Get avatax data helper
173
+ *
174
+ * @return OnePica_AvaTax_Helper_Data
175
+ */
176
+ protected function _getDataHelper()
177
+ {
178
+ return Mage::helper('avatax');
179
+ }
180
+ }
app/code/community/OnePica/AvaTax/Model/Tax/Config.php CHANGED
@@ -33,10 +33,320 @@ class OnePica_AvaTax_Model_Tax_Config extends Mage_Tax_Model_Config
33
  */
34
  public function discountTax($store = null)
35
  {
36
- if (Mage::helper('avatax')->isAvataxEnabled($store)) {
37
  return false;
38
  }
39
 
40
  return parent::discountTax($store);
41
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  }
33
  */
34
  public function discountTax($store = null)
35
  {
36
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
37
  return false;
38
  }
39
 
40
  return parent::discountTax($store);
41
  }
42
+
43
+ /**
44
+ * Check if product prices inputed include tax
45
+ *
46
+ * @param null|int $store
47
+ * @return bool
48
+ */
49
+ public function priceIncludesTax($store = null)
50
+ {
51
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
52
+ return false;
53
+ }
54
+
55
+ return parent::priceIncludesTax($store);
56
+ }
57
+
58
+ /**
59
+ * Check if shipping prices include tax
60
+ *
61
+ * @param null|int $store
62
+ * @return bool
63
+ */
64
+ public function shippingPriceIncludesTax($store = null)
65
+ {
66
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
67
+ return false;
68
+ }
69
+
70
+ return parent::shippingPriceIncludesTax($store);
71
+ }
72
+
73
+ /**
74
+ * Check if display cart prices included tax
75
+ *
76
+ * @param null|int $store
77
+ * @return bool
78
+ */
79
+ public function displayCartPricesInclTax($store = null)
80
+ {
81
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
82
+ return false;
83
+ }
84
+
85
+ return parent::displayCartPricesInclTax($store);
86
+ }
87
+
88
+ /**
89
+ * Check if display cart prices excluded tax
90
+ *
91
+ * @param null|int $store
92
+ * @return bool
93
+ */
94
+ public function displayCartPricesExclTax($store = null)
95
+ {
96
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
97
+ return true;
98
+ }
99
+
100
+ return parent::displayCartPricesExclTax($store);
101
+ }
102
+
103
+ /**
104
+ * Check if display cart prices included and excluded tax
105
+ *
106
+ * @param null|int $store
107
+ * @return bool
108
+ */
109
+ public function displayCartPricesBoth($store = null)
110
+ {
111
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
112
+ return false;
113
+ }
114
+
115
+ return parent::displayCartPricesBoth($store);
116
+ }
117
+
118
+ /**
119
+ * Check if display cart subtotal included tax
120
+ *
121
+ * @param mixed $store
122
+ * @return bool
123
+ */
124
+ public function displayCartSubtotalInclTax($store = null)
125
+ {
126
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
127
+ return false;
128
+ }
129
+
130
+ return parent::displayCartSubtotalInclTax($store);
131
+ }
132
+
133
+ /**
134
+ * Check if display cart subtotal excluded tax
135
+ *
136
+ * @param mixed $store
137
+ * @return bool
138
+ */
139
+ public function displayCartSubtotalExclTax($store = null)
140
+ {
141
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
142
+ return true;
143
+ }
144
+
145
+ return parent::displayCartSubtotalExclTax($store);
146
+ }
147
+
148
+ /**
149
+ * Check if display cart subtotal included and excluded tax
150
+ *
151
+ * @param mixed $store
152
+ * @return bool
153
+ */
154
+ public function displayCartSubtotalBoth($store = null)
155
+ {
156
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
157
+ return false;
158
+ }
159
+
160
+ return parent::displayCartSubtotalBoth($store);
161
+ }
162
+
163
+ /**
164
+ * Check if display cart shipping included tax
165
+ *
166
+ * @param mixed $store
167
+ * @return bool
168
+ */
169
+ public function displayCartShippingInclTax($store = null)
170
+ {
171
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
172
+ return false;
173
+ }
174
+
175
+ return parent::displayCartShippingInclTax($store);
176
+ }
177
+
178
+ /**
179
+ * Check if display cart shipping excluded tax
180
+ *
181
+ * @param mixed $store
182
+ * @return bool
183
+ */
184
+ public function displayCartShippingExclTax($store = null)
185
+ {
186
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
187
+ return true;
188
+ }
189
+
190
+ return parent::displayCartShippingExclTax($store);
191
+ }
192
+
193
+ /**
194
+ * Check if display cart shipping included and excluded tax
195
+ *
196
+ * @param mixed $store
197
+ * @return bool
198
+ */
199
+ public function displayCartShippingBoth($store = null)
200
+ {
201
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
202
+ return false;
203
+ }
204
+
205
+ return parent::displayCartShippingBoth($store);
206
+ }
207
+
208
+ /**
209
+ * Check if display sales prices include tax
210
+ *
211
+ * @param mixed $store
212
+ * @return bool
213
+ */
214
+ public function displaySalesPricesInclTax($store = null)
215
+ {
216
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
217
+ return false;
218
+ }
219
+
220
+ return parent::displaySalesPricesInclTax($store);
221
+ }
222
+
223
+ /**
224
+ * Check if display sales prices exclude tax
225
+ *
226
+ * @param mixed $store
227
+ * @return bool
228
+ */
229
+ public function displaySalesPricesExclTax($store = null)
230
+ {
231
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
232
+ return true;
233
+ }
234
+
235
+ return parent::displaySalesPricesExclTax($store);
236
+ }
237
+
238
+ /**
239
+ * Check if display sales prices include and exclude tax
240
+ *
241
+ * @param mixed $store
242
+ * @return bool
243
+ */
244
+ public function displaySalesPricesBoth($store = null)
245
+ {
246
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
247
+ return false;
248
+ }
249
+
250
+ return parent::displaySalesPricesBoth($store);
251
+ }
252
+
253
+ /**
254
+ * Check if display sales subtotal include tax
255
+ *
256
+ * @param mixed $store
257
+ * @return bool
258
+ */
259
+ public function displaySalesSubtotalInclTax($store = null)
260
+ {
261
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
262
+ return false;
263
+ }
264
+
265
+ return parent::displaySalesSubtotalInclTax($store);
266
+ }
267
+
268
+ /**
269
+ * Check if display sales subtotal exclude tax
270
+ *
271
+ * @param mixed $store
272
+ * @return bool
273
+ */
274
+ public function displaySalesSubtotalExclTax($store = null)
275
+ {
276
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
277
+ return true;
278
+ }
279
+
280
+ return parent::displaySalesSubtotalExclTax($store);
281
+ }
282
+
283
+ /**
284
+ * Check if display sales subtotal include and exclude tax
285
+ *
286
+ * @param mixed $store
287
+ * @return bool
288
+ */
289
+ public function displaySalesSubtotalBoth($store = null)
290
+ {
291
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
292
+ return false;
293
+ }
294
+
295
+ return parent::displaySalesSubtotalBoth($store);
296
+ }
297
+
298
+ /**
299
+ * Check if display sales shipping include tax
300
+ *
301
+ * @param mixed $store
302
+ * @return bool
303
+ */
304
+ public function displaySalesShippingInclTax($store = null)
305
+ {
306
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
307
+ return false;
308
+ }
309
+
310
+ return parent::displaySalesShippingInclTax($store);
311
+ }
312
+
313
+ /**
314
+ * Check if display sales shipping exclude tax
315
+ *
316
+ * @param mixed $store
317
+ * @return bool
318
+ */
319
+ public function displaySalesShippingExclTax($store = null)
320
+ {
321
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
322
+ return true;
323
+ }
324
+
325
+ return parent::displaySalesShippingExclTax($store);
326
+ }
327
+
328
+ /**
329
+ * Check if display sales shipping include and exclude tax
330
+ *
331
+ * @param mixed $store
332
+ * @return bool
333
+ */
334
+ public function displaySalesShippingBoth($store = null)
335
+ {
336
+ if ($this->_getDataHelper()->isAvataxEnabled($store)) {
337
+ return false;
338
+ }
339
+
340
+ return parent::displaySalesShippingBoth($store);
341
+ }
342
+
343
+ /**
344
+ * Get avatax data helper
345
+ *
346
+ * @return OnePica_AvaTax_Helper_Data
347
+ */
348
+ protected function _getDataHelper()
349
+ {
350
+ return Mage::helper('avatax');
351
+ }
352
  }
app/code/community/OnePica/AvaTax/etc/config.xml CHANGED
@@ -19,7 +19,7 @@
19
  <config>
20
  <modules>
21
  <OnePica_AvaTax>
22
- <version>2.6.7.1</version>
23
  </OnePica_AvaTax>
24
  </modules>
25
  <global>
@@ -79,6 +79,11 @@
79
  <data>OnePica_AvaTax_Helper_Tax_Data</data>
80
  </rewrite>
81
  </tax>
 
 
 
 
 
82
  </helpers>
83
  <blocks>
84
  <avatax>
19
  <config>
20
  <modules>
21
  <OnePica_AvaTax>
22
+ <version>2.6.8.1</version>
23
  </OnePica_AvaTax>
24
  </modules>
25
  <global>
79
  <data>OnePica_AvaTax_Helper_Tax_Data</data>
80
  </rewrite>
81
  </tax>
82
+ <enterprise_giftwrapping>
83
+ <rewrite>
84
+ <data>OnePica_AvaTax_Helper_GiftWrapping_Data</data>
85
+ </rewrite>
86
+ </enterprise_giftwrapping>
87
  </helpers>
88
  <blocks>
89
  <avatax>
app/code/community/OnePica/AvaTax/etc/system-disabled.xml CHANGED
@@ -99,8 +99,62 @@
99
  <show_in_website>1</show_in_website>
100
  <show_in_store>1</show_in_store>
101
  </full_summary>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  </fields>
103
  </sales_display>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  </groups>
105
  </tax>
106
  </sections>
99
  <show_in_website>1</show_in_website>
100
  <show_in_store>1</show_in_store>
101
  </full_summary>
102
+ <price>
103
+ <show_in_default>1</show_in_default>
104
+ <show_in_website>1</show_in_website>
105
+ <show_in_store>1</show_in_store>
106
+ </price>
107
+ <subtotal>
108
+ <show_in_default>1</show_in_default>
109
+ <show_in_website>1</show_in_website>
110
+ <show_in_store>1</show_in_store>
111
+ </subtotal>
112
+ <shipping>
113
+ <show_in_default>1</show_in_default>
114
+ <show_in_website>1</show_in_website>
115
+ <show_in_store>1</show_in_store>
116
+ </shipping>
117
+ <gift_wrapping>
118
+ <show_in_default>1</show_in_default>
119
+ <show_in_website>1</show_in_website>
120
+ <show_in_store>1</show_in_store>
121
+ </gift_wrapping>
122
+ <printed_card>
123
+ <show_in_default>1</show_in_default>
124
+ <show_in_website>1</show_in_website>
125
+ <show_in_store>1</show_in_store>
126
+ </printed_card>
127
  </fields>
128
  </sales_display>
129
+ <cart_display>
130
+ <fields>
131
+ <price >
132
+ <show_in_default>1</show_in_default>
133
+ <show_in_website>1</show_in_website>
134
+ <show_in_store>1</show_in_store>
135
+ </price>
136
+ <subtotal>
137
+ <show_in_default>1</show_in_default>
138
+ <show_in_website>1</show_in_website>
139
+ <show_in_store>1</show_in_store>
140
+ </subtotal>
141
+ <shipping>
142
+ <show_in_default>1</show_in_default>
143
+ <show_in_website>1</show_in_website>
144
+ <show_in_store>1</show_in_store>
145
+ </shipping>
146
+ <gift_wrapping>
147
+ <show_in_default>1</show_in_default>
148
+ <show_in_website>1</show_in_website>
149
+ <show_in_store>1</show_in_store>
150
+ </gift_wrapping>
151
+ <printed_card>
152
+ <show_in_default>1</show_in_default>
153
+ <show_in_website>1</show_in_website>
154
+ <show_in_store>1</show_in_store>
155
+ </printed_card>
156
+ </fields>
157
+ </cart_display>
158
  </groups>
159
  </tax>
160
  </sections>
app/code/community/OnePica/AvaTax/etc/system.xml CHANGED
@@ -523,8 +523,62 @@
523
  <show_in_website>0</show_in_website>
524
  <show_in_store>0</show_in_store>
525
  </full_summary>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
526
  </fields>
527
  </sales_display>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
528
  </groups>
529
  </tax>
530
  <shipping>
523
  <show_in_website>0</show_in_website>
524
  <show_in_store>0</show_in_store>
525
  </full_summary>
526
+ <price>
527
+ <show_in_default>0</show_in_default>
528
+ <show_in_website>0</show_in_website>
529
+ <show_in_store>0</show_in_store>
530
+ </price>
531
+ <subtotal>
532
+ <show_in_default>0</show_in_default>
533
+ <show_in_website>0</show_in_website>
534
+ <show_in_store>0</show_in_store>
535
+ </subtotal>
536
+ <shipping>
537
+ <show_in_default>0</show_in_default>
538
+ <show_in_website>0</show_in_website>
539
+ <show_in_store>0</show_in_store>
540
+ </shipping>
541
+ <gift_wrapping>
542
+ <show_in_default>0</show_in_default>
543
+ <show_in_website>0</show_in_website>
544
+ <show_in_store>0</show_in_store>
545
+ </gift_wrapping>
546
+ <printed_card>
547
+ <show_in_default>0</show_in_default>
548
+ <show_in_website>0</show_in_website>
549
+ <show_in_store>0</show_in_store>
550
+ </printed_card>
551
  </fields>
552
  </sales_display>
553
+ <cart_display>
554
+ <fields>
555
+ <price>
556
+ <show_in_default>0</show_in_default>
557
+ <show_in_website>0</show_in_website>
558
+ <show_in_store>0</show_in_store>
559
+ </price>
560
+ <subtotal>
561
+ <show_in_default>0</show_in_default>
562
+ <show_in_website>0</show_in_website>
563
+ <show_in_store>0</show_in_store>
564
+ </subtotal>
565
+ <shipping>
566
+ <show_in_default>0</show_in_default>
567
+ <show_in_website>0</show_in_website>
568
+ <show_in_store>0</show_in_store>
569
+ </shipping>
570
+ <gift_wrapping>
571
+ <show_in_default>0</show_in_default>
572
+ <show_in_website>0</show_in_website>
573
+ <show_in_store>0</show_in_store>
574
+ </gift_wrapping>
575
+ <printed_card>
576
+ <show_in_default>0</show_in_default>
577
+ <show_in_website>0</show_in_website>
578
+ <show_in_store>0</show_in_store>
579
+ </printed_card>
580
+ </fields>
581
+ </cart_display>
582
  </groups>
583
  </tax>
584
  <shipping>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>OnePica_AvaTax</name>
4
- <version>2.6.7</version>
5
  <stability>stable</stability>
6
  <license>Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
@@ -18,12 +18,11 @@ Released as a commercial extension, this software will not work unless you have
18
  &#xD;
19
  &#xD;
20
  At One Pica (www.onepica.com), we strive to build increasingly scalable and flexible enterprise systems for all of our clients, large and small. We want to give back to this community both to promote its success and as a sign of our gratitude. Please feel free to contact us on ways we can improve this extension or extend on this framework.</description>
21
- <notes>Fixed date &#x441;onverting for Invoice and Creditmemos on Magento 1.8.1.0 and below&#xD;
22
- Fixed queue process with deleted products</notes>
23
  <authors><author><name>Rostyslav Redko</name><user>marketing</user><email>avalara@onepica.com</email></author></authors>
24
- <date>2015-12-14</date>
25
- <time>10:43:24</time>
26
- <contents><target name="magecommunity"><dir name="OnePica"><dir name="AvaTax"><dir name="Block"><dir name="Adminhtml"><dir name="Export"><dir name="Abstract"><file name="Grid.php" hash="5f96ca490c5f7bd3fac23e30b00336e5"/></dir><dir name="Log"><file name="Grid.php" hash="311c55d8bc770e6d6aa6f377c2eee6fd"/><file name="View.php" hash="097d82a3e2b1a8820d335a63f212451b"/></dir><dir name="Queue"><file name="Grid.php" hash="1ef8ba9bf3e0870ea6dc50bb202a0b91"/></dir></dir><dir name="Notification"><file name="Toolbar.php" hash="2d8bc84188c162aada45548d5a901f9a"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Export.php" hash="3e019b9551b95c71f4cfd67a14d62a27"/></dir></dir></dir></dir><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="0e78c592366ee2746f3891cf91a388d3"/></dir><file name="Grid.php" hash="d731eb160457b8a22cfcd28682a1c485"/></dir></dir></dir><dir name="Checkout"><dir name="Onepage"><dir name="Shipping"><dir name="Method"><file name="Available.php" hash="c8ad904b71f344cfd1e01ceea7556dd1"/></dir></dir></dir></dir></dir><file name="Exception.php" hash="fc752f8da808a402baae2425c4072d22"/><dir name="Helper"><file name="Data.php" hash="a90c0bf748428583b04ca516a364bc66"/><dir name="Tax"><file name="Data.php" hash="e041b574919704a2ddc5173d38edda91"/></dir></dir><dir name="Model"><file name="Abstract.php" hash="97f0ae95e164849371f09dbb7b1afd86"/><dir name="Admin"><file name="Session.php" hash="e3dc3353c7eebf4e17c22ea4039585c5"/></dir><dir name="Adminhtml"><file name="Config.php" hash="e3656ed052c4bd143822369ffed5a5c7"/><dir name="Sales"><dir name="Order"><file name="Create.php" hash="08253fde693e39124b4b4f242c238852"/></dir></dir></dir><dir name="Avatax"><file name="Abstract.php" hash="a186b0d54d454e889f59e271e0b7eaae"/><file name="Address.php" hash="6acca70d1173e2bf05a04cc8d2ad51b4"/><file name="Estimate.php" hash="7bea18db264df43d7b2d63d8b82e3670"/><dir name="Exception"><file name="Address.php" hash="66761b418530d8682666a0ed6987ff3e"/><file name="Commitfailure.php" hash="81257541dd1d679493cfd2d3c5b6366e"/><file name="Unbalanced.php" hash="dc7967d9c5780b45ecb0828d5a1fc6dc"/></dir><file name="Invoice.php" hash="c91ba2a1d84fc7aaf836aa02ce164cfe"/><file name="Ping.php" hash="57b77948291fda5c6fe15733fd96a3c0"/></dir><file name="Config.php" hash="623922ea0cb4b335d2fca188f6f4f405"/><dir name="Export"><dir name="Adapter"><file name="Abstract.php" hash="840c8b87acd97646572bba9bb3b8f5ea"/><file name="Sql.php" hash="0e9bedb400f411785311f78ebbf676da"/></dir><dir name="Entity"><file name="Abstract.php" hash="d38a2293452c31e92f81bf5be59c3e1c"/><file name="Log.php" hash="a1dd28eee3e72d1a4ef7bddd865ddbae"/><file name="Queue.php" hash="14a97c283aa74f97982ab71160017aa3"/></dir></dir><file name="Export.php" hash="b94613b678b413d6268b07d314ba122e"/><file name="Observer.php" hash="31cf1af00c679866b93fe3a1dc9dae2b"/><dir name="Records"><file name="Log.php" hash="9a95ea609f75fa416c4564de8d3af4a2"/><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="29db8163f4dda862ff822ddffd04554d"/></dir><file name="Log.php" hash="d6fb7997768b7e0f1b39363fd4de5917"/><dir name="Queue"><file name="Collection.php" hash="11bba1561c81f39695f091b94bd81560"/></dir><file name="Queue.php" hash="ad319339f577fdbbba740c52848a272c"/></dir><dir name="Queue"><file name="Process.php" hash="77092de76e08561d16759660b4a4f0c4"/></dir><file name="Queue.php" hash="17e369325bcac42042676bb61a2248c5"/></dir><dir name="Sales"><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Grand.php" hash="63fb5a808ad3c16d2ed15f1dafad7937"/><file name="Tax.php" hash="cf83ec631fc356095f7e1ce6f581adaf"/></dir></dir><file name="Address.php" hash="3191bbdf4e2227d35cf588dde798731b"/></dir></dir><file name="Session.php" hash="429142089e75418a702e70edc56374cf"/><dir name="Source"><file name="Actions.php" hash="879b80f92f735402f57e316546b16984"/><file name="Addressvalidation.php" hash="9f2315018910f7336ad894156d49d9b9"/><file name="Customercodeformat.php" hash="cfcfcbaa27ed29add072324816da0c9d"/><file name="Error.php" hash="7f5495a2f295ded2d0a30f2f7108d009"/><file name="Fieldlist.php" hash="18987603d4d58130959a8ac76716ed08"/><file name="Logmode.php" hash="24d61da578a3b4adb896fea7d4d4d8ec"/><file name="Logtype.php" hash="4079ebbf7ef44593e631b8cc9f0fc2a5"/><file name="Onerrorfrontend.php" hash="ef4154ae563d8157c1083f20e0adf563"/><dir name="Regionfilter"><file name="List.php" hash="ed98a569d45cb5b014107f0fda52d735"/><file name="Mode.php" hash="27fdc94c6f162100d55005285b5170df"/></dir></dir><dir name="Tax"><file name="Config.php" hash="6168c0d674a44291b7dbfe358305a04b"/></dir><dir name="Total"><dir name="Quote"><dir name="Tax"><file name="Giftwrapping.php" hash="ff5f4418766f31933ae0a184ffaab946"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="AvaTax"><file name="ExportController.php" hash="ead5ebea03db8f885d0ec6114dcb185c"/><file name="GridController.php" hash="5c7e822890a6feaec2db348e6c5a19e1"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="aa39dba65fb2c685dec016a376c4aede"/><file name="config.xml" hash="601c2405024edfb343848b61ef11d326"/><file name="system-disabled.xml" hash="588cd3c8ddbf05eea324e2c85f28c195"/><file name="system.xml" hash="d22e4a797858f488fbebfbfd120d77a4"/></dir><dir name="sql"><dir name="avatax_records_setup"><file name="mysql4-data-upgrade-2.2.0-2.2.1.php" hash="260d1c57754ebadba00d8ccdbb0ec996"/><file name="mysql4-install-0.1.0.php" hash="3d16899179b36bfde69609a99a2faae6"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="94d0cf2fc0e9bbe2de2829198ce3026f"/><file name="mysql4-upgrade-1.0.1-2.0.0.php" hash="905d7519328cdb1c46bba4221288c41c"/><file name="mysql4-upgrade-2.5.0.0-2.5.0.1.php" hash="4b439957397049bbe01d458fd7cfe0a2"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="OnePica_AvaTax.xml" hash="07fd9423811b4dc084060d6131b889d7"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="onepica"><file name="avatax.xml" hash="de338ca651fcce096d089b2bbbcc1374"/></dir></dir><dir name="template"><dir name="onepica"><dir name="avatax"><dir name="log"><file name="view.phtml" hash="df14eee805bbedd484cf500dbf2335ed"/></dir><dir name="notification"><file name="toolbar.phtml" hash="fd368e043843df76ec3a74290b87dc3e"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="onepica"><file name="avatax.xml" hash="38c6ce2165f6ccfd6641eb1487faad39"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="en_US"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="es_ES"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="fr_FR"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="nl_NL"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="pt_BR"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="zh_CN"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir></target><target name="magelib"><dir name="AvaTax"><file name="AvaTax.php" hash="46bf3fb7795482b7494b2fdc266af3bc"/><dir name="classes"><file name="ATConfig.class.php" hash="dd1c39643f677e0c3b612c549686812c"/><file name="ATObject.class.php" hash="83359fd7639c98449836dc11d08c899d"/><file name="Address.class.php" hash="68bf4fe1306a60e672b7345a0dc7fcc6"/><file name="AddressServiceSoap.class.php" hash="c59bf4a586da207611f7bace4f08c880"/><file name="AddressType.class.php" hash="62c9ff3c533aaf5ad1fd4de95702be40"/><file name="AdjustTaxRequest.class.php" hash="47dbfa8044ca893bf214d8e71ab4864e"/><file name="AdjustTaxResult.class.php" hash="cf63aa5b7c3b52b3ec86695c4cdf0fcc"/><file name="ApplyPaymentRequest.class.php" hash="69d69dff63cbd284d8aea62247142692"/><file name="ApplyPaymentResult.class.php" hash="0e37bda0f1221c2ed2432717a2d8cc08"/><dir name="AvaCert2Svc"><file name="AvaCert2Soap.class.php" hash="0567793d9e4e496b45c3e8a0459f944a"/><file name="Certificate.class.php" hash="dd3f0dd2a2b03c97552f9dbd5c6463ba"/><file name="CertificateGetRequest.class.php" hash="4c11fd111cab99fa4dbc2c2250e0f3ad"/><file name="CertificateGetResult.class.php" hash="6a95a06e71bd13839c6142bba08bfba5"/><file name="CertificateImageGetRequest.class.php" hash="32f61011abe3d1c74ea7fc209e3e4224"/><file name="CertificateImageGetResult.class.php" hash="beda0f1fd54951b84b7dd77ead92bda3"/><file name="CertificateJurisdiction.class.php" hash="e666d572fb34d17fcd91127a50616195"/><file name="CertificateRequest.class.php" hash="7b76dc3675e507975ae6cf01abfa6059"/><file name="CertificateRequestGetRequest.class.php" hash="0cf2fafae88f795a754d75291947cb56"/><file name="CertificateRequestGetResult.class.php" hash="eceffe3acec787506649669b1b5edcf7"/><file name="CertificateRequestInitiateRequest.class.php" hash="148a5c4c881c885be863f403582b4974"/><file name="CertificateRequestInitiateResult.class.php" hash="a7a55cb398cd2fb9f0e11b8c6b09498d"/><file name="CertificateRequestStage.class.php" hash="92dec7da28f83f1a419d9573e6cec1fa"/><file name="CertificateRequestStatus.class.php" hash="a5d5c1629ce4f5ee0c18a8924204ca22"/><file name="CertificateStatus.class.php" hash="6ae43ab57ae9df37d07ac4203270c25e"/><file name="CertificateUsage.class.php" hash="bad34570daa7679b267f1288bf0a371f"/><file name="CommunicationMode.class.php" hash="71d2743c1d2afffe11d2903e89ff9c0e"/><file name="Customer.class.php" hash="e9f13f38f75cb4e1b845c55e6f26a5ab"/><file name="CustomerSaveRequest.class.php" hash="58ff71b04bb3a308b7f0199c6fae1e56"/><file name="CustomerSaveResult.class.php" hash="98cf79bdb7c0558963670b21e66b7d85"/><file name="FormatType.class.php" hash="714d183d3d365a07ef606d1211c732b0"/><file name="RequestType.class.php" hash="6144c2731baaf67400ea34e50440c1df"/><file name="ReviewStatus.class.php" hash="0dd208ecbf6b45196f51f304b1d48b03"/></dir><file name="AvalaraSoapClient.class.php" hash="dd605cefabb4396ef1b46b6d23b439b5"/><file name="BaseResult.class.php" hash="85d2c23ecc62bf4b828d04f405f83d37"/><dir name="BatchSvc"><file name="AuditMessage.class.php" hash="798d8169506357af02e6912b4bca9148"/><file name="AvaTaxBatchSvc.php" hash="8d65fd4a02cd4fc1104aa9c24b35e4fb"/><file name="BaseResult.class.php" hash="727ef623b821e95a73cf6d1eda891379"/><file name="Batch.class.php" hash="c028822bcf2a4f1fae6fc7dca76f247a"/><file name="BatchDelete.class.php" hash="0bcff09309ccad969d65c2d27fa63dda"/><file name="BatchDeleteResponse.class.php" hash="46afd464673459efb54ccaf509d37eef"/><file name="BatchFetch.class.php" hash="74f96ecc3c2df87271d60c4c969e43f8"/><file name="BatchFetchResponse.class.php" hash="b2acf63deea2c0fd374f80745b60fef5"/><file name="BatchFetchResult.class.php" hash="83d8de067f4bd59acafe4cd065f90163"/><file name="BatchFile.class.php" hash="65cee20383c8040fac1d4c45bbe757dd"/><file name="BatchFileDelete.class.php" hash="01d0bc10cb0ada43a9a00ca0efffef17"/><file name="BatchFileDeleteResponse.class.php" hash="b4e7881d26b7071303650973144f418b"/><file name="BatchFileFetch.class.php" hash="c5e91b8073fb756545d0f74803fdf3d6"/><file name="BatchFileFetchResponse.class.php" hash="c37ce819a975cdae5e7a82432b4b2334"/><file name="BatchFileFetchResult.class.php" hash="6bc54523d34356a83cdc4ecd2f696ea5"/><file name="BatchFileSave.class.php" hash="8434b0ffdd1fba4991535248ee3d618e"/><file name="BatchFileSaveResponse.class.php" hash="d52f79b42467b59f2177359f8a73cd3a"/><file name="BatchFileSaveResult.class.php" hash="19d3a2f20ccc42e80759b280842cf03c"/><file name="BatchProcess.class.php" hash="44d9efe13d01fce15bd444e5729b320c"/><file name="BatchProcessRequest.class.php" hash="04684b987c6d77319cc6881941091de9"/><file name="BatchProcessResponse.class.php" hash="c22b08c125eefc4006495c55984ed91e"/><file name="BatchProcessResult.class.php" hash="f9cac2270aafae49fc0892ea729c3713"/><file name="BatchSave.class.php" hash="d3a397348b905d49a0c91be780f3ec04"/><file name="BatchSaveResponse.class.php" hash="4c3088b85590fd697b5686aa1dddd89e"/><file name="BatchSaveResult.class.php" hash="7ea7fe3dc7d580711f6b52d991c43dce"/><file name="BatchSvc.class.php" hash="fa903f70b06d1e3b86384f2b6fb60616"/><file name="DeleteRequest.class.php" hash="43f945ef1e59ef02494df6df6ec3d1b6"/><file name="DeleteResult.class.php" hash="f7d64582f1182ae0337d6d84a5f60e8d"/><file name="FetchRequest.class.php" hash="7271317a8909672261ea0e00867e810b"/><file name="FilterRequest.class.php" hash="3c1eaec68f84531931a3cd6143533576"/><file name="FilterResult.class.php" hash="f4c0eeac0153b735ec589fcff7accd86"/><file name="IsAuthorized.class.php" hash="8339a2b249d954efaaf64f10665976fc"/><file name="IsAuthorizedResponse.class.php" hash="613c91f36370dc38ca07b83a29f2a45f"/><file name="IsAuthorizedResult.class.php" hash="65f9665508a5e7f33e4aee2835a9806e"/><file name="Message.class.php" hash="576327c8d9cd74bd96d9ccd62a2daa5b"/><file name="Ping.class.php" hash="3a2246f5557a5279fa260c65b36a9b44"/><file name="PingResponse.class.php" hash="b9f5e8b43382ee605d93768db8af1805"/><file name="PingResult.class.php" hash="2e05acfe74aad28003ad7d8ed102c3c6"/><file name="Profile.class.php" hash="a16a4819018dd8510ddab8feb9ee0f7e"/><file name="SeverityLevel.class.php" hash="5736530f3b5fd0cd932c783418563647"/></dir><file name="BoundaryLevel.class.php" hash="e9c2f2e3173e44fa8351f2a6dbb578fe"/><file name="CancelCode.class.php" hash="fd0b8ad2865e8fcf622b1faafc677527"/><file name="CancelTaxRequest.class.php" hash="08a114e32ec9eda9268ec337f79cb86f"/><file name="CancelTaxResult.class.php" hash="687be65bab85e6c6e8f99764c0475d9b"/><file name="CommitTaxRequest.class.php" hash="66ef55bc094d233b75e36b029995aed7"/><file name="CommitTaxResult.class.php" hash="ef90276817207e63e4e96ea518618f50"/><file name="DetailLevel.class.php" hash="2439f7137a4f9f52e28a6b321c4bcf16"/><file name="DocStatus.class.php" hash="9e3384a0f2ace05fa67fe05eba295fcd"/><file name="DocumentType.class.php" hash="94b4509b914d638a94f946b5518b8993"/><file name="DynamicSoapClient.class.php" hash="5bb36f2d4db3955ae059488eb9511ca9"/><file name="Enum.class.php" hash="d3ff4c898aff49f3c425042433826257"/><file name="GetTaxHistoryRequest.class.php" hash="3ed4c54de1e015f476ce7aa58c802468"/><file name="GetTaxHistoryResult.class.php" hash="7e8209e1f64df52b538927312b1bd934"/><file name="GetTaxRequest.class.php" hash="a3343ef6a1e27e48c9a75aa9e02777c4"/><file name="GetTaxResult.class.php" hash="7e2b7415a018fd76b62ab49637833533"/><file name="IsAuthorizedResult.class.php" hash="58164457677a61e93309f788fe61dc0c"/><file name="JurisdictionType.class.php" hash="a345fe5db379af87a6f7ec833ff86586"/><file name="Line.class.php" hash="7fefbd0230ee2fe8a8e6468abf338b80"/><file name="Message.class.php" hash="073be6cbcccacf2d1d55a04c045eab63"/><file name="PingResult.class.php" hash="18f88589588f08b619488c926cf5547c"/><file name="PostTaxRequest.class.php" hash="be8ea4ee2fddb10b62cb1be7e38179e3"/><file name="PostTaxResult.class.php" hash="bf2ee0b1293301ee00ac9b8b8390e780"/><file name="ReconcileTaxHistoryRequest.class.php" hash="41f2cfe04495612a9c293b1bc19220ce"/><file name="ReconcileTaxHistoryResult.class.php" hash="dd20684e0e017f56c98e29297180a0d7"/><file name="SearchTaxHistoryResult.class.php" hash="e3171e00482f7c2c0ed9753ffd05cd14"/><file name="ServiceMode.class.php" hash="0c66b3e25f4466461cebf32735e207e0"/><file name="SeverityLevel.class.php" hash="68fc81e651fe7f01c81b43b0d28ff0dc"/><file name="TaxDetail.class.php" hash="56065f8ea68505152b23e41238b80dfb"/><file name="TaxLine.class.php" hash="05376f01ad9a14f438ad0f1d5d423b61"/><file name="TaxOverride.class.php" hash="94d28efa3cdf58a87ba45a313ce93fc7"/><file name="TaxOverrideType.class.php" hash="d23f90c9ac639954c8fcee57ba763b21"/><file name="TaxRequest.class.php" hash="7339016da0c3cbe51843767987e7fbed"/><file name="TaxServiceSoap.class.php" hash="bc7e4eb0e66dd1bd956e19e0da337171"/><file name="TaxType.class.php" hash="ee87ecc8721076f0cda67fe1cc5b0db7"/><file name="TextCase.class.php" hash="8fb2eccc49eacdc1a4f5624c0716a750"/><file name="ValidAddress.class.php" hash="2f8eebcd379208198cd38632f1e34b0a"/><file name="ValidateRequest.class.php" hash="340822f22dee80e160193cacdc9c8dfb"/><file name="ValidateResult.class.php" hash="23de6a26defed9324ddcdcedfd2228bf"/><dir name="wsdl"><file name="Address.wsdl" hash="37ac1778f42147b548e09c8bb39b3cfc"/><file name="AvaCert2Svc.wsdl" hash="60da5aa0484ce00b82d7675ea3fd6454"/><file name="AvaCertSvc.wsdl" hash="25d03720f7018ea027c3345ec2c69c8e"/><file name="BatchSvc.wsdl" hash="798a715e28b9751b01666a29554135f7"/><file name="Tax.wsdl" hash="051420912d3e0b2489ae250c47059166"/></dir></dir><file name="functions.php" hash="57734d162b59cbc65933d25bf3950270"/></dir></target></contents>
27
  <compatible/>
28
  <dependencies><required><php><min>5.2.3</min><max>6.0.0</max></php><extension><name>Core</name><min/><max/></extension><extension><name>curl</name><min/><max/></extension><extension><name>soap</name><min/><max/></extension></required></dependencies>
29
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>OnePica_AvaTax</name>
4
+ <version>2.6.8</version>
5
  <stability>stable</stability>
6
  <license>Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
18
  &#xD;
19
  &#xD;
20
  At One Pica (www.onepica.com), we strive to build increasingly scalable and flexible enterprise systems for all of our clients, large and small. We want to give back to this community both to promote its success and as a sign of our gratitude. Please feel free to contact us on ways we can improve this extension or extend on this framework.</description>
21
+ <notes>Fixed price displaying</notes>
 
22
  <authors><author><name>Rostyslav Redko</name><user>marketing</user><email>avalara@onepica.com</email></author></authors>
23
+ <date>2015-12-24</date>
24
+ <time>15:10:49</time>
25
+ <contents><target name="magecommunity"><dir name="OnePica"><dir name="AvaTax"><dir name="Block"><dir name="Adminhtml"><dir name="Export"><dir name="Abstract"><file name="Grid.php" hash="5f96ca490c5f7bd3fac23e30b00336e5"/></dir><dir name="Log"><file name="Grid.php" hash="311c55d8bc770e6d6aa6f377c2eee6fd"/><file name="View.php" hash="097d82a3e2b1a8820d335a63f212451b"/></dir><dir name="Queue"><file name="Grid.php" hash="1ef8ba9bf3e0870ea6dc50bb202a0b91"/></dir></dir><dir name="Notification"><file name="Toolbar.php" hash="2d8bc84188c162aada45548d5a901f9a"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Export.php" hash="3e019b9551b95c71f4cfd67a14d62a27"/></dir></dir></dir></dir><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="0e78c592366ee2746f3891cf91a388d3"/></dir><file name="Grid.php" hash="d731eb160457b8a22cfcd28682a1c485"/></dir></dir></dir><dir name="Checkout"><dir name="Onepage"><dir name="Shipping"><dir name="Method"><file name="Available.php" hash="c8ad904b71f344cfd1e01ceea7556dd1"/></dir></dir></dir></dir></dir><file name="Exception.php" hash="fc752f8da808a402baae2425c4072d22"/><dir name="Helper"><file name="Data.php" hash="a90c0bf748428583b04ca516a364bc66"/><dir name="GiftWrapping"><file name="Data.php" hash="6165e5c10c2582023456210573d89256"/></dir><dir name="Tax"><file name="Data.php" hash="e041b574919704a2ddc5173d38edda91"/></dir></dir><dir name="Model"><file name="Abstract.php" hash="97f0ae95e164849371f09dbb7b1afd86"/><dir name="Admin"><file name="Session.php" hash="e3dc3353c7eebf4e17c22ea4039585c5"/></dir><dir name="Adminhtml"><file name="Config.php" hash="e3656ed052c4bd143822369ffed5a5c7"/><dir name="Sales"><dir name="Order"><file name="Create.php" hash="08253fde693e39124b4b4f242c238852"/></dir></dir></dir><dir name="Avatax"><file name="Abstract.php" hash="a186b0d54d454e889f59e271e0b7eaae"/><file name="Address.php" hash="6acca70d1173e2bf05a04cc8d2ad51b4"/><file name="Estimate.php" hash="7bea18db264df43d7b2d63d8b82e3670"/><dir name="Exception"><file name="Address.php" hash="66761b418530d8682666a0ed6987ff3e"/><file name="Commitfailure.php" hash="81257541dd1d679493cfd2d3c5b6366e"/><file name="Unbalanced.php" hash="dc7967d9c5780b45ecb0828d5a1fc6dc"/></dir><file name="Invoice.php" hash="c91ba2a1d84fc7aaf836aa02ce164cfe"/><file name="Ping.php" hash="57b77948291fda5c6fe15733fd96a3c0"/></dir><file name="Config.php" hash="623922ea0cb4b335d2fca188f6f4f405"/><dir name="Export"><dir name="Adapter"><file name="Abstract.php" hash="840c8b87acd97646572bba9bb3b8f5ea"/><file name="Sql.php" hash="0e9bedb400f411785311f78ebbf676da"/></dir><dir name="Entity"><file name="Abstract.php" hash="d38a2293452c31e92f81bf5be59c3e1c"/><file name="Log.php" hash="a1dd28eee3e72d1a4ef7bddd865ddbae"/><file name="Queue.php" hash="14a97c283aa74f97982ab71160017aa3"/></dir></dir><file name="Export.php" hash="b94613b678b413d6268b07d314ba122e"/><file name="Observer.php" hash="31cf1af00c679866b93fe3a1dc9dae2b"/><dir name="Records"><file name="Log.php" hash="9a95ea609f75fa416c4564de8d3af4a2"/><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="29db8163f4dda862ff822ddffd04554d"/></dir><file name="Log.php" hash="d6fb7997768b7e0f1b39363fd4de5917"/><dir name="Queue"><file name="Collection.php" hash="11bba1561c81f39695f091b94bd81560"/></dir><file name="Queue.php" hash="ad319339f577fdbbba740c52848a272c"/></dir><dir name="Queue"><file name="Process.php" hash="77092de76e08561d16759660b4a4f0c4"/></dir><file name="Queue.php" hash="17e369325bcac42042676bb61a2248c5"/></dir><dir name="Sales"><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Grand.php" hash="63fb5a808ad3c16d2ed15f1dafad7937"/><file name="Tax.php" hash="cf83ec631fc356095f7e1ce6f581adaf"/></dir></dir><file name="Address.php" hash="3191bbdf4e2227d35cf588dde798731b"/></dir></dir><file name="Session.php" hash="429142089e75418a702e70edc56374cf"/><dir name="Source"><file name="Actions.php" hash="879b80f92f735402f57e316546b16984"/><file name="Addressvalidation.php" hash="9f2315018910f7336ad894156d49d9b9"/><file name="Customercodeformat.php" hash="cfcfcbaa27ed29add072324816da0c9d"/><file name="Error.php" hash="7f5495a2f295ded2d0a30f2f7108d009"/><file name="Fieldlist.php" hash="18987603d4d58130959a8ac76716ed08"/><file name="Logmode.php" hash="24d61da578a3b4adb896fea7d4d4d8ec"/><file name="Logtype.php" hash="4079ebbf7ef44593e631b8cc9f0fc2a5"/><file name="Onerrorfrontend.php" hash="ef4154ae563d8157c1083f20e0adf563"/><dir name="Regionfilter"><file name="List.php" hash="ed98a569d45cb5b014107f0fda52d735"/><file name="Mode.php" hash="27fdc94c6f162100d55005285b5170df"/></dir></dir><dir name="Tax"><file name="Config.php" hash="8897cfa4fef8099c937559ebe9dfee5e"/></dir><dir name="Total"><dir name="Quote"><dir name="Tax"><file name="Giftwrapping.php" hash="ff5f4418766f31933ae0a184ffaab946"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="AvaTax"><file name="ExportController.php" hash="ead5ebea03db8f885d0ec6114dcb185c"/><file name="GridController.php" hash="5c7e822890a6feaec2db348e6c5a19e1"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="aa39dba65fb2c685dec016a376c4aede"/><file name="config.xml" hash="9f47d6fa2e78bcaa79a67e5aafd8013b"/><file name="system-disabled.xml" hash="46d8b175492d3e2fd6910471d481c18e"/><file name="system.xml" hash="fe00657faaad115555246ed67d9d404d"/></dir><dir name="sql"><dir name="avatax_records_setup"><file name="mysql4-data-upgrade-2.2.0-2.2.1.php" hash="260d1c57754ebadba00d8ccdbb0ec996"/><file name="mysql4-install-0.1.0.php" hash="3d16899179b36bfde69609a99a2faae6"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="94d0cf2fc0e9bbe2de2829198ce3026f"/><file name="mysql4-upgrade-1.0.1-2.0.0.php" hash="905d7519328cdb1c46bba4221288c41c"/><file name="mysql4-upgrade-2.5.0.0-2.5.0.1.php" hash="4b439957397049bbe01d458fd7cfe0a2"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="OnePica_AvaTax.xml" hash="07fd9423811b4dc084060d6131b889d7"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="onepica"><file name="avatax.xml" hash="de338ca651fcce096d089b2bbbcc1374"/></dir></dir><dir name="template"><dir name="onepica"><dir name="avatax"><dir name="log"><file name="view.phtml" hash="df14eee805bbedd484cf500dbf2335ed"/></dir><dir name="notification"><file name="toolbar.phtml" hash="fd368e043843df76ec3a74290b87dc3e"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="onepica"><file name="avatax.xml" hash="38c6ce2165f6ccfd6641eb1487faad39"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="en_US"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="es_ES"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="fr_FR"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="nl_NL"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="pt_BR"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir><dir name="zh_CN"><file name="OnePica_AvaTax.csv" hash="43d2dee74aee6f15abd471a65b4f407c"/></dir></target><target name="magelib"><dir name="AvaTax"><file name="AvaTax.php" hash="46bf3fb7795482b7494b2fdc266af3bc"/><dir name="classes"><file name="ATConfig.class.php" hash="dd1c39643f677e0c3b612c549686812c"/><file name="ATObject.class.php" hash="83359fd7639c98449836dc11d08c899d"/><file name="Address.class.php" hash="68bf4fe1306a60e672b7345a0dc7fcc6"/><file name="AddressServiceSoap.class.php" hash="c59bf4a586da207611f7bace4f08c880"/><file name="AddressType.class.php" hash="62c9ff3c533aaf5ad1fd4de95702be40"/><file name="AdjustTaxRequest.class.php" hash="47dbfa8044ca893bf214d8e71ab4864e"/><file name="AdjustTaxResult.class.php" hash="cf63aa5b7c3b52b3ec86695c4cdf0fcc"/><file name="ApplyPaymentRequest.class.php" hash="69d69dff63cbd284d8aea62247142692"/><file name="ApplyPaymentResult.class.php" hash="0e37bda0f1221c2ed2432717a2d8cc08"/><dir name="AvaCert2Svc"><file name="AvaCert2Soap.class.php" hash="0567793d9e4e496b45c3e8a0459f944a"/><file name="Certificate.class.php" hash="dd3f0dd2a2b03c97552f9dbd5c6463ba"/><file name="CertificateGetRequest.class.php" hash="4c11fd111cab99fa4dbc2c2250e0f3ad"/><file name="CertificateGetResult.class.php" hash="6a95a06e71bd13839c6142bba08bfba5"/><file name="CertificateImageGetRequest.class.php" hash="32f61011abe3d1c74ea7fc209e3e4224"/><file name="CertificateImageGetResult.class.php" hash="beda0f1fd54951b84b7dd77ead92bda3"/><file name="CertificateJurisdiction.class.php" hash="e666d572fb34d17fcd91127a50616195"/><file name="CertificateRequest.class.php" hash="7b76dc3675e507975ae6cf01abfa6059"/><file name="CertificateRequestGetRequest.class.php" hash="0cf2fafae88f795a754d75291947cb56"/><file name="CertificateRequestGetResult.class.php" hash="eceffe3acec787506649669b1b5edcf7"/><file name="CertificateRequestInitiateRequest.class.php" hash="148a5c4c881c885be863f403582b4974"/><file name="CertificateRequestInitiateResult.class.php" hash="a7a55cb398cd2fb9f0e11b8c6b09498d"/><file name="CertificateRequestStage.class.php" hash="92dec7da28f83f1a419d9573e6cec1fa"/><file name="CertificateRequestStatus.class.php" hash="a5d5c1629ce4f5ee0c18a8924204ca22"/><file name="CertificateStatus.class.php" hash="6ae43ab57ae9df37d07ac4203270c25e"/><file name="CertificateUsage.class.php" hash="bad34570daa7679b267f1288bf0a371f"/><file name="CommunicationMode.class.php" hash="71d2743c1d2afffe11d2903e89ff9c0e"/><file name="Customer.class.php" hash="e9f13f38f75cb4e1b845c55e6f26a5ab"/><file name="CustomerSaveRequest.class.php" hash="58ff71b04bb3a308b7f0199c6fae1e56"/><file name="CustomerSaveResult.class.php" hash="98cf79bdb7c0558963670b21e66b7d85"/><file name="FormatType.class.php" hash="714d183d3d365a07ef606d1211c732b0"/><file name="RequestType.class.php" hash="6144c2731baaf67400ea34e50440c1df"/><file name="ReviewStatus.class.php" hash="0dd208ecbf6b45196f51f304b1d48b03"/></dir><file name="AvalaraSoapClient.class.php" hash="dd605cefabb4396ef1b46b6d23b439b5"/><file name="BaseResult.class.php" hash="85d2c23ecc62bf4b828d04f405f83d37"/><dir name="BatchSvc"><file name="AuditMessage.class.php" hash="798d8169506357af02e6912b4bca9148"/><file name="AvaTaxBatchSvc.php" hash="8d65fd4a02cd4fc1104aa9c24b35e4fb"/><file name="BaseResult.class.php" hash="727ef623b821e95a73cf6d1eda891379"/><file name="Batch.class.php" hash="c028822bcf2a4f1fae6fc7dca76f247a"/><file name="BatchDelete.class.php" hash="0bcff09309ccad969d65c2d27fa63dda"/><file name="BatchDeleteResponse.class.php" hash="46afd464673459efb54ccaf509d37eef"/><file name="BatchFetch.class.php" hash="74f96ecc3c2df87271d60c4c969e43f8"/><file name="BatchFetchResponse.class.php" hash="b2acf63deea2c0fd374f80745b60fef5"/><file name="BatchFetchResult.class.php" hash="83d8de067f4bd59acafe4cd065f90163"/><file name="BatchFile.class.php" hash="65cee20383c8040fac1d4c45bbe757dd"/><file name="BatchFileDelete.class.php" hash="01d0bc10cb0ada43a9a00ca0efffef17"/><file name="BatchFileDeleteResponse.class.php" hash="b4e7881d26b7071303650973144f418b"/><file name="BatchFileFetch.class.php" hash="c5e91b8073fb756545d0f74803fdf3d6"/><file name="BatchFileFetchResponse.class.php" hash="c37ce819a975cdae5e7a82432b4b2334"/><file name="BatchFileFetchResult.class.php" hash="6bc54523d34356a83cdc4ecd2f696ea5"/><file name="BatchFileSave.class.php" hash="8434b0ffdd1fba4991535248ee3d618e"/><file name="BatchFileSaveResponse.class.php" hash="d52f79b42467b59f2177359f8a73cd3a"/><file name="BatchFileSaveResult.class.php" hash="19d3a2f20ccc42e80759b280842cf03c"/><file name="BatchProcess.class.php" hash="44d9efe13d01fce15bd444e5729b320c"/><file name="BatchProcessRequest.class.php" hash="04684b987c6d77319cc6881941091de9"/><file name="BatchProcessResponse.class.php" hash="c22b08c125eefc4006495c55984ed91e"/><file name="BatchProcessResult.class.php" hash="f9cac2270aafae49fc0892ea729c3713"/><file name="BatchSave.class.php" hash="d3a397348b905d49a0c91be780f3ec04"/><file name="BatchSaveResponse.class.php" hash="4c3088b85590fd697b5686aa1dddd89e"/><file name="BatchSaveResult.class.php" hash="7ea7fe3dc7d580711f6b52d991c43dce"/><file name="BatchSvc.class.php" hash="fa903f70b06d1e3b86384f2b6fb60616"/><file name="DeleteRequest.class.php" hash="43f945ef1e59ef02494df6df6ec3d1b6"/><file name="DeleteResult.class.php" hash="f7d64582f1182ae0337d6d84a5f60e8d"/><file name="FetchRequest.class.php" hash="7271317a8909672261ea0e00867e810b"/><file name="FilterRequest.class.php" hash="3c1eaec68f84531931a3cd6143533576"/><file name="FilterResult.class.php" hash="f4c0eeac0153b735ec589fcff7accd86"/><file name="IsAuthorized.class.php" hash="8339a2b249d954efaaf64f10665976fc"/><file name="IsAuthorizedResponse.class.php" hash="613c91f36370dc38ca07b83a29f2a45f"/><file name="IsAuthorizedResult.class.php" hash="65f9665508a5e7f33e4aee2835a9806e"/><file name="Message.class.php" hash="576327c8d9cd74bd96d9ccd62a2daa5b"/><file name="Ping.class.php" hash="3a2246f5557a5279fa260c65b36a9b44"/><file name="PingResponse.class.php" hash="b9f5e8b43382ee605d93768db8af1805"/><file name="PingResult.class.php" hash="2e05acfe74aad28003ad7d8ed102c3c6"/><file name="Profile.class.php" hash="a16a4819018dd8510ddab8feb9ee0f7e"/><file name="SeverityLevel.class.php" hash="5736530f3b5fd0cd932c783418563647"/></dir><file name="BoundaryLevel.class.php" hash="e9c2f2e3173e44fa8351f2a6dbb578fe"/><file name="CancelCode.class.php" hash="fd0b8ad2865e8fcf622b1faafc677527"/><file name="CancelTaxRequest.class.php" hash="08a114e32ec9eda9268ec337f79cb86f"/><file name="CancelTaxResult.class.php" hash="687be65bab85e6c6e8f99764c0475d9b"/><file name="CommitTaxRequest.class.php" hash="66ef55bc094d233b75e36b029995aed7"/><file name="CommitTaxResult.class.php" hash="ef90276817207e63e4e96ea518618f50"/><file name="DetailLevel.class.php" hash="2439f7137a4f9f52e28a6b321c4bcf16"/><file name="DocStatus.class.php" hash="9e3384a0f2ace05fa67fe05eba295fcd"/><file name="DocumentType.class.php" hash="94b4509b914d638a94f946b5518b8993"/><file name="DynamicSoapClient.class.php" hash="5bb36f2d4db3955ae059488eb9511ca9"/><file name="Enum.class.php" hash="d3ff4c898aff49f3c425042433826257"/><file name="GetTaxHistoryRequest.class.php" hash="3ed4c54de1e015f476ce7aa58c802468"/><file name="GetTaxHistoryResult.class.php" hash="7e8209e1f64df52b538927312b1bd934"/><file name="GetTaxRequest.class.php" hash="a3343ef6a1e27e48c9a75aa9e02777c4"/><file name="GetTaxResult.class.php" hash="7e2b7415a018fd76b62ab49637833533"/><file name="IsAuthorizedResult.class.php" hash="58164457677a61e93309f788fe61dc0c"/><file name="JurisdictionType.class.php" hash="a345fe5db379af87a6f7ec833ff86586"/><file name="Line.class.php" hash="7fefbd0230ee2fe8a8e6468abf338b80"/><file name="Message.class.php" hash="073be6cbcccacf2d1d55a04c045eab63"/><file name="PingResult.class.php" hash="18f88589588f08b619488c926cf5547c"/><file name="PostTaxRequest.class.php" hash="be8ea4ee2fddb10b62cb1be7e38179e3"/><file name="PostTaxResult.class.php" hash="bf2ee0b1293301ee00ac9b8b8390e780"/><file name="ReconcileTaxHistoryRequest.class.php" hash="41f2cfe04495612a9c293b1bc19220ce"/><file name="ReconcileTaxHistoryResult.class.php" hash="dd20684e0e017f56c98e29297180a0d7"/><file name="SearchTaxHistoryResult.class.php" hash="e3171e00482f7c2c0ed9753ffd05cd14"/><file name="ServiceMode.class.php" hash="0c66b3e25f4466461cebf32735e207e0"/><file name="SeverityLevel.class.php" hash="68fc81e651fe7f01c81b43b0d28ff0dc"/><file name="TaxDetail.class.php" hash="56065f8ea68505152b23e41238b80dfb"/><file name="TaxLine.class.php" hash="05376f01ad9a14f438ad0f1d5d423b61"/><file name="TaxOverride.class.php" hash="94d28efa3cdf58a87ba45a313ce93fc7"/><file name="TaxOverrideType.class.php" hash="d23f90c9ac639954c8fcee57ba763b21"/><file name="TaxRequest.class.php" hash="7339016da0c3cbe51843767987e7fbed"/><file name="TaxServiceSoap.class.php" hash="bc7e4eb0e66dd1bd956e19e0da337171"/><file name="TaxType.class.php" hash="ee87ecc8721076f0cda67fe1cc5b0db7"/><file name="TextCase.class.php" hash="8fb2eccc49eacdc1a4f5624c0716a750"/><file name="ValidAddress.class.php" hash="2f8eebcd379208198cd38632f1e34b0a"/><file name="ValidateRequest.class.php" hash="340822f22dee80e160193cacdc9c8dfb"/><file name="ValidateResult.class.php" hash="23de6a26defed9324ddcdcedfd2228bf"/><dir name="wsdl"><file name="Address.wsdl" hash="37ac1778f42147b548e09c8bb39b3cfc"/><file name="AvaCert2Svc.wsdl" hash="60da5aa0484ce00b82d7675ea3fd6454"/><file name="AvaCertSvc.wsdl" hash="25d03720f7018ea027c3345ec2c69c8e"/><file name="BatchSvc.wsdl" hash="798a715e28b9751b01666a29554135f7"/><file name="Tax.wsdl" hash="051420912d3e0b2489ae250c47059166"/></dir></dir><file name="functions.php" hash="57734d162b59cbc65933d25bf3950270"/></dir></target></contents>
26
  <compatible/>
27
  <dependencies><required><php><min>5.2.3</min><max>6.0.0</max></php><extension><name>Core</name><min/><max/></extension><extension><name>curl</name><min/><max/></extension><extension><name>soap</name><min/><max/></extension></required></dependencies>
28
  </package>