Version Notes
Initial Public Release
Download this release
Release Info
Developer | Vonnda Development |
Extension | Taxify_Sales_Tax_Rates_and_Filing |
Version | 0.2.0 |
Comparing to | |
See all releases |
Code changes from version 0.1.9 to 0.2.0
- app/code/local/Vonnda/Taxify/Model/Client.php +4 -1
- app/code/local/Vonnda/Taxify/Model/Config.php +2 -0
- app/code/local/Vonnda/Taxify/Model/Export.php +2 -0
- app/code/local/Vonnda/Taxify/Model/Export/Row.php +2 -0
- app/code/local/Vonnda/Taxify/Model/Feed.php +2 -0
- app/code/local/Vonnda/Taxify/Model/Observer.php +3 -0
- app/code/local/Vonnda/Taxify/Model/Request/Calculate.php +3 -1
- app/code/local/Vonnda/Taxify/Model/Request/Cancel.php +1 -0
- app/code/local/Vonnda/Taxify/Model/Request/Codes.php +2 -0
- app/code/local/Vonnda/Taxify/Model/Request/Commit.php +2 -0
- app/code/local/Vonnda/Taxify/Model/Request/Request.php +1 -0
- app/code/local/Vonnda/Taxify/Model/Request/Verifyaddress.php +1 -0
- app/code/local/Vonnda/Taxify/Model/Request/Version.php +1 -0
- app/code/local/Vonnda/Taxify/Model/Sales/Quote/Address/Total/Tax.php +2 -0
- app/code/local/Vonnda/Taxify/controllers/TaxifyController.php +2 -0
- app/code/local/Vonnda/Taxify/etc/config.xml +5 -1
- app/code/local/Vonnda/Taxify/tests/Helper/DataTest.php +1 -1
- app/code/local/Vonnda/Taxify/tests/Request/CalculateTest.php +2 -1
- package.xml +4 -4
app/code/local/Vonnda/Taxify/Model/Client.php
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
<?php
|
2 |
|
|
|
3 |
class Vonnda_Taxify_Model_Client extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
|
@@ -8,8 +9,10 @@ class Vonnda_Taxify_Model_Client extends Mage_Core_Model_Abstract
|
|
8 |
public $response;
|
9 |
public $url = '';
|
10 |
public $soapClient;
|
11 |
-
public $logFilename = 'taxify.log';
|
12 |
public $requestNodeName = 'Request';
|
|
|
|
|
13 |
const PARTNER_KEY = '275067E9-C359-4BF3-AC6E-2772456F6FAD';
|
14 |
|
15 |
public function __construct()
|
1 |
<?php
|
2 |
|
3 |
+
// Main API client. All API calls to Taxify flow through this class
|
4 |
class Vonnda_Taxify_Model_Client extends Mage_Core_Model_Abstract
|
5 |
{
|
6 |
|
9 |
public $response;
|
10 |
public $url = '';
|
11 |
public $soapClient;
|
12 |
+
public $logFilename = 'taxify.log'; // Name of file to write logs to
|
13 |
public $requestNodeName = 'Request';
|
14 |
+
|
15 |
+
// Do not change this key unless instructed by Taxify
|
16 |
const PARTNER_KEY = '275067E9-C359-4BF3-AC6E-2772456F6FAD';
|
17 |
|
18 |
public function __construct()
|
app/code/local/Vonnda/Taxify/Model/Config.php
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
3 |
class Vonnda_Taxify_Model_Config extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
|
1 |
<?php
|
2 |
|
3 |
+
// All config values are pulled from here, new config values should be
|
4 |
+
// added here if necessary.
|
5 |
class Vonnda_Taxify_Model_Config extends Mage_Core_Model_Abstract
|
6 |
{
|
7 |
|
app/code/local/Vonnda/Taxify/Model/Export.php
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
3 |
class Vonnda_Taxify_Model_Export extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
|
1 |
<?php
|
2 |
|
3 |
+
// Responsible for creating a mass export of all orders for people
|
4 |
+
// wishing to import orders into taxify
|
5 |
class Vonnda_Taxify_Model_Export extends Mage_Core_Model_Abstract
|
6 |
{
|
7 |
|
app/code/local/Vonnda/Taxify/Model/Export/Row.php
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
3 |
class Vonnda_Taxify_Model_Export_Row extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
public $map = array();
|
1 |
<?php
|
2 |
|
3 |
+
// Responsible for generating a single row in the order export for people
|
4 |
+
// switching to Taxify from another legacy system
|
5 |
class Vonnda_Taxify_Model_Export_Row extends Mage_Core_Model_Abstract
|
6 |
{
|
7 |
public $map = array();
|
app/code/local/Vonnda/Taxify/Model/Feed.php
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
3 |
class Vonnda_Taxify_Model_Feed extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
|
1 |
<?php
|
2 |
|
3 |
+
// Will periodically fetch feed for updates. These notificaions
|
4 |
+
// will show up in admin section.
|
5 |
class Vonnda_Taxify_Model_Feed extends Mage_Core_Model_Abstract
|
6 |
{
|
7 |
|
app/code/local/Vonnda/Taxify/Model/Observer.php
CHANGED
@@ -20,6 +20,7 @@ class Vonnda_Taxify_Model_Observer
|
|
20 |
return;
|
21 |
}
|
22 |
|
|
|
23 |
Mage::getConfig()->setNode('global/sales/quote/totals/tax/class',
|
24 |
'vonnda_taxify_model_sales_quote_address_total_tax');
|
25 |
}
|
@@ -30,6 +31,7 @@ class Vonnda_Taxify_Model_Observer
|
|
30 |
return;
|
31 |
}
|
32 |
|
|
|
33 |
$order = $observer->getEvent()->getOrder();
|
34 |
$commit = Mage::getModel('taxify/request_commit');
|
35 |
$commit->loadOrder($order);
|
@@ -42,6 +44,7 @@ class Vonnda_Taxify_Model_Observer
|
|
42 |
return;
|
43 |
}
|
44 |
|
|
|
45 |
$order = $observer->getEvent()->getPayment()->getOrder();
|
46 |
$cancel = Mage::getModel('taxify/request_cancel');
|
47 |
$cancel->loadOrder($order);
|
20 |
return;
|
21 |
}
|
22 |
|
23 |
+
// Swap out Magento tax calc with our own (this is per store, see above)
|
24 |
Mage::getConfig()->setNode('global/sales/quote/totals/tax/class',
|
25 |
'vonnda_taxify_model_sales_quote_address_total_tax');
|
26 |
}
|
31 |
return;
|
32 |
}
|
33 |
|
34 |
+
// Send final commit tax call to Taxify after order is created
|
35 |
$order = $observer->getEvent()->getOrder();
|
36 |
$commit = Mage::getModel('taxify/request_commit');
|
37 |
$commit->loadOrder($order);
|
44 |
return;
|
45 |
}
|
46 |
|
47 |
+
// Send cancel tax call to Taxify after order is cancelled
|
48 |
$order = $observer->getEvent()->getPayment()->getOrder();
|
49 |
$cancel = Mage::getModel('taxify/request_cancel');
|
50 |
$cancel->loadOrder($order);
|
app/code/local/Vonnda/Taxify/Model/Request/Calculate.php
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
<?php
|
2 |
|
|
|
3 |
class Vonnda_Taxify_Model_Request_Calculate extends Vonnda_Taxify_Model_Request_Request
|
4 |
{
|
5 |
public $apiMethod = 'CalculateTax';
|
@@ -173,7 +174,8 @@ class Vonnda_Taxify_Model_Request_Calculate extends Vonnda_Taxify_Model_Request_
|
|
173 |
return $items;
|
174 |
}
|
175 |
|
176 |
-
$pennies =
|
|
|
177 |
while ($pennies > 0) {
|
178 |
foreach ($items as $index => $item) {
|
179 |
if ($this->isShippingItem($item)) {
|
1 |
<?php
|
2 |
|
3 |
+
// Responsible for creating a taxify calculate API call
|
4 |
class Vonnda_Taxify_Model_Request_Calculate extends Vonnda_Taxify_Model_Request_Request
|
5 |
{
|
6 |
public $apiMethod = 'CalculateTax';
|
174 |
return $items;
|
175 |
}
|
176 |
|
177 |
+
$pennies = $discountAmount * 100;
|
178 |
+
$pennies = (int) $pennies;
|
179 |
while ($pennies > 0) {
|
180 |
foreach ($items as $index => $item) {
|
181 |
if ($this->isShippingItem($item)) {
|
app/code/local/Vonnda/Taxify/Model/Request/Cancel.php
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
<?php
|
2 |
|
|
|
3 |
class Vonnda_Taxify_Model_Request_Cancel extends Vonnda_Taxify_Model_Request_Request
|
4 |
{
|
5 |
|
1 |
<?php
|
2 |
|
3 |
+
// Responsible for creating a taxify cancel API call
|
4 |
class Vonnda_Taxify_Model_Request_Cancel extends Vonnda_Taxify_Model_Request_Request
|
5 |
{
|
6 |
|
app/code/local/Vonnda/Taxify/Model/Request/Codes.php
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
3 |
class Vonnda_Taxify_Model_Request_Codes extends Vonnda_Taxify_Model_Request_Request
|
4 |
{
|
5 |
public $apiMethod = 'GetCodes';
|
1 |
<?php
|
2 |
|
3 |
+
// Responsible for creating a taxify GetCodes API call
|
4 |
+
// Can fetch Item and Customer tax codes
|
5 |
class Vonnda_Taxify_Model_Request_Codes extends Vonnda_Taxify_Model_Request_Request
|
6 |
{
|
7 |
public $apiMethod = 'GetCodes';
|
app/code/local/Vonnda/Taxify/Model/Request/Commit.php
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
3 |
class Vonnda_Taxify_Model_Request_Commit extends Vonnda_Taxify_Model_Request_Request
|
4 |
{
|
5 |
|
1 |
<?php
|
2 |
|
3 |
+
// Responsible for creating a taxify CommitTax API call
|
4 |
+
// This is typically called after the order is placed
|
5 |
class Vonnda_Taxify_Model_Request_Commit extends Vonnda_Taxify_Model_Request_Request
|
6 |
{
|
7 |
|
app/code/local/Vonnda/Taxify/Model/Request/Request.php
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
<?php
|
2 |
|
|
|
3 |
class Vonnda_Taxify_Model_Request_Request extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
public $order;
|
1 |
<?php
|
2 |
|
3 |
+
// Base Taxify request
|
4 |
class Vonnda_Taxify_Model_Request_Request extends Mage_Core_Model_Abstract
|
5 |
{
|
6 |
public $order;
|
app/code/local/Vonnda/Taxify/Model/Request/Verifyaddress.php
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
<?php
|
2 |
|
|
|
3 |
class Vonnda_Taxify_Model_Request_Verifyaddress extends Vonnda_Taxify_Model_Request_Request
|
4 |
{
|
5 |
|
1 |
<?php
|
2 |
|
3 |
+
// Responsible for creating a taxify address verify API call
|
4 |
class Vonnda_Taxify_Model_Request_Verifyaddress extends Vonnda_Taxify_Model_Request_Request
|
5 |
{
|
6 |
|
app/code/local/Vonnda/Taxify/Model/Request/Version.php
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
<?php
|
2 |
|
|
|
3 |
class Vonnda_Taxify_Model_Request_Version extends Vonnda_Taxify_Model_Request_Request
|
4 |
{
|
5 |
|
1 |
<?php
|
2 |
|
3 |
+
// Will get current version of API
|
4 |
class Vonnda_Taxify_Model_Request_Version extends Vonnda_Taxify_Model_Request_Request
|
5 |
{
|
6 |
|
app/code/local/Vonnda/Taxify/Model/Sales/Quote/Address/Total/Tax.php
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
3 |
class Vonnda_Taxify_Model_Sales_Quote_Address_Total_Tax extends Mage_Sales_Model_Quote_Address_Total_Tax
|
4 |
{
|
5 |
protected $_appliedTaxes = array();
|
1 |
<?php
|
2 |
|
3 |
+
// This model will (when appropriate) override default Magento Tax calculation
|
4 |
+
// This is where tax calculation is kicked off from
|
5 |
class Vonnda_Taxify_Model_Sales_Quote_Address_Total_Tax extends Mage_Sales_Model_Quote_Address_Total_Tax
|
6 |
{
|
7 |
protected $_appliedTaxes = array();
|
app/code/local/Vonnda/Taxify/controllers/TaxifyController.php
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
class Vonnda_Taxify_TaxifyController extends Mage_Adminhtml_Controller_Action
|
4 |
{
|
5 |
|
|
|
6 |
public function indexAction()
|
7 |
{
|
8 |
$this->loadLayout();
|
@@ -11,6 +12,7 @@ class Vonnda_Taxify_TaxifyController extends Mage_Adminhtml_Controller_Action
|
|
11 |
$this->renderLayout();
|
12 |
}
|
13 |
|
|
|
14 |
public function exportAction()
|
15 |
{
|
16 |
$export = Mage::getModel('taxify/export');
|
3 |
class Vonnda_Taxify_TaxifyController extends Mage_Adminhtml_Controller_Action
|
4 |
{
|
5 |
|
6 |
+
// Show order export page
|
7 |
public function indexAction()
|
8 |
{
|
9 |
$this->loadLayout();
|
12 |
$this->renderLayout();
|
13 |
}
|
14 |
|
15 |
+
// Exports previous orders for people that want to migrate to taxify
|
16 |
public function exportAction()
|
17 |
{
|
18 |
$export = Mage::getModel('taxify/export');
|
app/code/local/Vonnda/Taxify/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Vonnda_Taxify>
|
5 |
-
<version>0.
|
6 |
</Vonnda_Taxify>
|
7 |
</modules>
|
8 |
<global>
|
@@ -109,8 +109,12 @@
|
|
109 |
</tax>
|
110 |
<taxify>
|
111 |
<feed>
|
|
|
112 |
<url>http://magento.vonnda.net/rss/taxify.rss</url>
|
|
|
113 |
<use_https>0</use_https>
|
|
|
|
|
114 |
<frequency>24</frequency>
|
115 |
</feed>
|
116 |
</taxify>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Vonnda_Taxify>
|
5 |
+
<version>0.2.0</version>
|
6 |
</Vonnda_Taxify>
|
7 |
</modules>
|
8 |
<global>
|
109 |
</tax>
|
110 |
<taxify>
|
111 |
<feed>
|
112 |
+
<!-- URI to admin notification feed (see readme) -->
|
113 |
<url>http://magento.vonnda.net/rss/taxify.rss</url>
|
114 |
+
|
115 |
<use_https>0</use_https>
|
116 |
+
|
117 |
+
<!-- Hours between checking for notifications -->
|
118 |
<frequency>24</frequency>
|
119 |
</feed>
|
120 |
</taxify>
|
app/code/local/Vonnda/Taxify/tests/Helper/DataTest.php
CHANGED
@@ -10,7 +10,7 @@ class HelperDataTest extends PHPUnit_Framework_TestCase
|
|
10 |
'' => 'None',
|
11 |
'RESALE' => 'Resale',
|
12 |
'RETAIL' => 'Retail',
|
13 |
-
'USETAX' => 'Usetax',
|
14 |
);
|
15 |
$this->assertEquals($expected, $options);
|
16 |
}
|
10 |
'' => 'None',
|
11 |
'RESALE' => 'Resale',
|
12 |
'RETAIL' => 'Retail',
|
13 |
+
//'USETAX' => 'Usetax',
|
14 |
);
|
15 |
$this->assertEquals($expected, $options);
|
16 |
}
|
app/code/local/Vonnda/Taxify/tests/Request/CalculateTest.php
CHANGED
@@ -80,7 +80,7 @@ class CalculateTest extends PHPUnit_Framework_TestCase
|
|
80 |
|
81 |
$resp = $calculate->getItemTaxabilityCode($item);
|
82 |
|
83 |
-
$this->assertEquals('', $resp);
|
84 |
|
85 |
|
86 |
$calculate = Mage::getModel('taxify/request_calculate');
|
@@ -124,6 +124,7 @@ class CalculateTest extends PHPUnit_Framework_TestCase
|
|
124 |
0.000 => array(295.00, 5.00),
|
125 |
295.000 => array(0.00, 5.00),
|
126 |
300.000 => array(0.00, 5.00),
|
|
|
127 |
);
|
128 |
|
129 |
$calculate = Mage::getModel('taxify/request_calculate');
|
80 |
|
81 |
$resp = $calculate->getItemTaxabilityCode($item);
|
82 |
|
83 |
+
$this->assertEquals('NONTAX', $resp);
|
84 |
|
85 |
|
86 |
$calculate = Mage::getModel('taxify/request_calculate');
|
124 |
0.000 => array(295.00, 5.00),
|
125 |
295.000 => array(0.00, 5.00),
|
126 |
300.000 => array(0.00, 5.00),
|
127 |
+
'26.500' => array(268.50, 5.00),
|
128 |
);
|
129 |
|
130 |
$calculate = Mage::getModel('taxify/request_calculate');
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Taxify_Sales_Tax_Rates_and_Filing</name>
|
4 |
-
<version>0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License V2</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Taxify ensures that your Magento store collects, reports and remits accurate sales taxes for all Federal, state, and local jurisdictions throughout the United States</description>
|
11 |
<notes>Initial Public Release</notes>
|
12 |
<authors><author><name>Vonnda Development</name><user>Vonnda</user><email>info@vonnda.com</email></author></authors>
|
13 |
-
<date>2015-11-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magelocal"><dir name="Vonnda"><dir name="Taxify"><dir name="Block"><dir name="Adminhtml"><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="4c8f337cb03db39cc74bb5df9d94850d"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="df447d3734709072c2176093e785e008"/></dir><dir name="Model"><file name="Client.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>5.6.2</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Taxify_Sales_Tax_Rates_and_Filing</name>
|
4 |
+
<version>0.2.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License V2</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Taxify ensures that your Magento store collects, reports and remits accurate sales taxes for all Federal, state, and local jurisdictions throughout the United States</description>
|
11 |
<notes>Initial Public Release</notes>
|
12 |
<authors><author><name>Vonnda Development</name><user>Vonnda</user><email>info@vonnda.com</email></author></authors>
|
13 |
+
<date>2015-11-17</date>
|
14 |
+
<time>17:29:34</time>
|
15 |
+
<contents><target name="magelocal"><dir name="Vonnda"><dir name="Taxify"><dir name="Block"><dir name="Adminhtml"><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="4c8f337cb03db39cc74bb5df9d94850d"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="df447d3734709072c2176093e785e008"/></dir><dir name="Model"><file name="Client.php" hash="86161822865f61617eb0ec822f42d12e"/><file name="Config.php" hash="ccefc5627934a37bfc09cb7e0875f99e"/><dir name="Export"><file name="Row.php" hash="8951355e03775d916c1c6118d0ae6b4e"/></dir><file name="Export.php" hash="925c6711c00300c6806b79bd331058c3"/><file name="Feed.php" hash="e0678d50484574d720d9df946ccaf9c7"/><file name="Observer.php" hash="cc6d17169d91eac7bfe590b692130353"/><dir name="Request"><file name="Calculate.php" hash="dd71e467a196d10aa30d42025a558b2a"/><file name="Cancel.php" hash="34db75ff82a163ce22d704531063c5c6"/><file name="Codes.php" hash="3b237da565fcba7e463fe04a27fb84b4"/><file name="Commit.php" hash="c9e91922a59ebb5824c338099e9cf580"/><file name="Request.php" hash="5178375ce7024dcc3f991097935673fc"/><file name="Verifyaddress.php" hash="9f619dd10958d3779ec651af47bf04c4"/><file name="Version.php" hash="561c828ad9e0bd3e7cd1509f7774fa86"/></dir><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="326120cd05749e9b48e7dd966a3b2c19"/></dir></dir><dir name="Sales"><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Tax.php" hash="e22d3ad3a685369edd739630024a16cd"/></dir><file name=".DS_Store" hash="d6c424b95f6c304aa0e0c861c9a01073"/></dir><file name=".DS_Store" hash="e3088067e0aac643641350be6bd5da89"/></dir><file name=".DS_Store" hash="d8aa3112ea4a1c59b473e14dcddf7d1f"/></dir><file name=".DS_Store" hash="89503324a3148078dbd8a9ac140ae571"/></dir><dir name="controllers"><file name="TaxifyController.php" hash="2fe945ff29d7261949d610fc43260410"/></dir><dir name="etc"><file name="adminhtml.xml" hash="504a3e32bd2d6695811f67523c03504a"/><file name="config.xml" hash="6b06e6afca1fefc7ed2fbca10da0600c"/><file name="system.xml" hash="2d8e7e036755c1b0c291259575ffd87d"/></dir><dir name="sql"><dir name="taxify_setup"><file name="mysql4-install-0.1.1.php" hash="523629216cc236efa1e3a08dc40b9291"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="f63715adff31a85fb43aa1aecfc42c2d"/></dir></dir><dir name="tests"><dir name="Helper"><file name="DataTest.php" hash="8ebef47e1f82cc1526a87bf9f601e6c5"/></dir><dir name="Model"><dir name="Export"><file name="RowTest.php" hash="370afb16507950dcbf2ac27090c8452c"/></dir><file name="ExportTest.php" hash="04ec5d1e4a71bf840881b2cb55be5528"/></dir><dir name="Request"><file name="CalculateTest.php" hash="d0e358e1b2a6eda1d3434e91876c61d7"/><file name="CancelTest.php" hash="b8ba6f0004d493f72ce22c66375ffdac"/><file name="CodesTest.php" hash="34101e57f496b40b817496fa78abad3a"/><file name="CommitTest.php" hash="59c4473ba919047dd821e05b335dbc38"/></dir><file name="SampleTest.php" hash="32606c8d8b84d95aec73bdeb1c03ca1e"/><dir name="fixtures"><file name="calculateMultiSimpleProductSuccess.txt" hash="6d7426310bebbcb0b758697035a4e8f7"/><file name="calculateSuccess.txt" hash="892ebdae0cd70bcf36cc34be2d21da76"/><file name="exportQueryResult.txt" hash="d07fec0de05420e89536fadb822baa84"/></dir></dir><file name=".DS_Store" hash="1f5579cf877cc451179cc658a1117441"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Vonnda_Taxify.xml" hash="b3120a86b364f80ee8daf825412a1318"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="taxify"><file name="export.phtml" hash="25487d4b0664dd7cfbea135ad50bf948"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>5.6.2</max></php></required></dependencies>
|
18 |
</package>
|