Version Notes
1 - The export csv option is currently disabled. This is so the extension does not conflict with the existing tablerates. There are no plans to resolve this - if you need to view the data look in phpmyadmin.
Download this release
Release Info
| Developer | Magento Core Team |
| Extension | Auctionmaid_Matrxrate |
| Version | 2.0.5 |
| Comparing to | |
| See all releases | |
Code changes from version 2.0.4 to 2.0.5
app/code/community/Auctionmaid/Freeoptionalshipping/Model/Carrier/Freeoptionalshipping.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* Conditional Free Shipping Module - where if attribute exclude_free_shipping is set
|
| 22 |
* will result in free shipping being disabled for checkout
|
| 23 |
-
*
|
| 24 |
* @category Auctionmaid
|
| 25 |
* @package Auctionmaid_Freeoptionalshipping
|
| 26 |
* @copyright Copyright (c) 2008 Auction Maid (http://www.auctionmaid.com)
|
|
@@ -64,7 +64,6 @@ class Auctionmaid_Freeoptionalshipping_Model_Carrier_Freeoptionalshipping
|
|
| 64 |
foreach($items as $item) {
|
| 65 |
$product = Mage::getModel('catalog/product')->loadByAttribute('sku', $item->getSku(), 'exclude_free_shipping');
|
| 66 |
if ($product->getData('exclude_free_shipping')) {
|
| 67 |
-
Mage::log(print_r($item->getSku(),true));
|
| 68 |
return false;
|
| 69 |
}
|
| 70 |
}
|
| 20 |
*
|
| 21 |
* Conditional Free Shipping Module - where if attribute exclude_free_shipping is set
|
| 22 |
* will result in free shipping being disabled for checkout
|
| 23 |
+
*
|
| 24 |
* @category Auctionmaid
|
| 25 |
* @package Auctionmaid_Freeoptionalshipping
|
| 26 |
* @copyright Copyright (c) 2008 Auction Maid (http://www.auctionmaid.com)
|
| 64 |
foreach($items as $item) {
|
| 65 |
$product = Mage::getModel('catalog/product')->loadByAttribute('sku', $item->getSku(), 'exclude_free_shipping');
|
| 66 |
if ($product->getData('exclude_free_shipping')) {
|
|
|
|
| 67 |
return false;
|
| 68 |
}
|
| 69 |
}
|
app/code/community/Auctionmaid/Matrixrate/Model/Carrier/Matrixrate.php
CHANGED
|
@@ -68,7 +68,6 @@ class Auctionmaid_Matrixrate_Model_Carrier_Matrixrate
|
|
| 68 |
$i=0;
|
| 69 |
foreach ($ratearray as $rate)
|
| 70 |
{
|
| 71 |
-
Mage::log(print_r($rate['delivery_type'],true));
|
| 72 |
if (!empty($rate) && $rate['price'] >= 0) {
|
| 73 |
$method = Mage::getModel('shipping/rate_result_method');
|
| 74 |
|
| 68 |
$i=0;
|
| 69 |
foreach ($ratearray as $rate)
|
| 70 |
{
|
|
|
|
| 71 |
if (!empty($rate) && $rate['price'] >= 0) {
|
| 72 |
$method = Mage::getModel('shipping/rate_result_method');
|
| 73 |
|
app/code/community/Auctionmaid/Matrixrate/Model/Mysql4/Carrier/Matrixrate.php
CHANGED
|
@@ -42,17 +42,17 @@ class Auctionmaid_Matrixrate_Model_Mysql4_Carrier_Matrixrate extends Mage_Core_M
|
|
| 42 |
$table = Mage::getSingleton('core/resource')->getTableName('matrixrate_shipping/matrixrate');
|
| 43 |
|
| 44 |
if ($zipRangeSet) {
|
| 45 |
-
# Want to search for postcodes within a range
|
| 46 |
$zipSearchString = $read->quoteInto(" AND dest_zip<=? ", $postcode).
|
| 47 |
$read->quoteInto(" AND dest_zip_to>=? )", $postcode);
|
| 48 |
} else {
|
| 49 |
$zipSearchString = $read->quoteInto(" AND ? LIKE dest_zip )", $postcode);
|
| 50 |
-
}
|
| 51 |
|
| 52 |
for ($j=0;$j<8;$j++)
|
| 53 |
{
|
| 54 |
|
| 55 |
-
$select = $read->select()->from($table);
|
| 56 |
switch($j) {
|
| 57 |
case 0:
|
| 58 |
$select->where(
|
|
@@ -69,7 +69,7 @@ class Auctionmaid_Matrixrate_Model_Mysql4_Carrier_Matrixrate extends Mage_Core_M
|
|
| 69 |
$read->quoteInto(" AND dest_region_id=? AND dest_city=''", $request->getDestRegionId()).
|
| 70 |
$zipSearchString
|
| 71 |
);
|
| 72 |
-
break;
|
| 73 |
case 2:
|
| 74 |
$select->where(
|
| 75 |
$read->quoteInto(" (dest_country_id=? ", $request->getDestCountryId()).
|
|
@@ -77,7 +77,7 @@ class Auctionmaid_Matrixrate_Model_Mysql4_Carrier_Matrixrate extends Mage_Core_M
|
|
| 77 |
$read->quoteInto(" AND STRCMP(LOWER(dest_city),LOWER(?)) = 0 AND dest_zip='')", $request->getDestCity())
|
| 78 |
);
|
| 79 |
break;
|
| 80 |
-
|
| 81 |
case 3:
|
| 82 |
$select->where(
|
| 83 |
$read->quoteInto(" (dest_country_id=? ", $request->getDestCountryId()).
|
|
@@ -97,21 +97,21 @@ class Auctionmaid_Matrixrate_Model_Mysql4_Carrier_Matrixrate extends Mage_Core_M
|
|
| 97 |
$read->quoteInto(" AND dest_region_id=? AND dest_city='' AND dest_zip='') ", $request->getDestRegionId())
|
| 98 |
);
|
| 99 |
break;
|
| 100 |
-
|
| 101 |
case 6:
|
| 102 |
$select->where(
|
| 103 |
$read->quoteInto(" (dest_country_id=? AND dest_region_id='0' AND dest_city='' AND dest_zip='') ", $request->getDestCountryId())
|
| 104 |
);
|
| 105 |
break;
|
| 106 |
-
|
| 107 |
case 7:
|
| 108 |
$select->where(
|
| 109 |
" (dest_country_id='0' AND dest_region_id='0' AND dest_zip='')"
|
| 110 |
);
|
| 111 |
break;
|
| 112 |
}
|
| 113 |
-
|
| 114 |
-
|
| 115 |
if (is_array($request->getConditionName())) {
|
| 116 |
$i = 0;
|
| 117 |
foreach ($request->getConditionName() as $conditionName) {
|
|
@@ -121,8 +121,8 @@ class Auctionmaid_Matrixrate_Model_Mysql4_Carrier_Matrixrate extends Mage_Core_M
|
|
| 121 |
$select->orWhere('condition_name=?', $conditionName);
|
| 122 |
}
|
| 123 |
$select->where('condition_from_value<=?', $request->getData($conditionName));
|
| 124 |
-
|
| 125 |
-
|
| 126 |
$i++;
|
| 127 |
}
|
| 128 |
} else {
|
|
@@ -130,21 +130,19 @@ class Auctionmaid_Matrixrate_Model_Mysql4_Carrier_Matrixrate extends Mage_Core_M
|
|
| 130 |
$select->where('condition_from_value<=?', $request->getData($request->getConditionName()));
|
| 131 |
$select->where('condition_to_value>=?', $request->getData($request->getConditionName()));
|
| 132 |
}
|
| 133 |
-
|
| 134 |
-
/* Mage::log(print_r($request,true));**/
|
| 135 |
$select->where('website_id=?', $request->getWebsiteId());
|
| 136 |
-
|
| 137 |
$select->order('dest_country_id DESC');
|
| 138 |
$select->order('dest_region_id DESC');
|
| 139 |
$select->order('dest_zip DESC');
|
| 140 |
$select->order('condition_from_value DESC');
|
| 141 |
-
|
| 142 |
/*
|
| 143 |
pdo has an issue. we cannot use bind
|
| 144 |
*/
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
$newdata=array();
|
| 149 |
$row = $read->fetchAll($select);
|
| 150 |
if (!empty($row))
|
|
@@ -254,7 +252,7 @@ class Auctionmaid_Matrixrate_Model_Mysql4_Carrier_Matrixrate extends Mage_Core_M
|
|
| 254 |
} else {
|
| 255 |
$regionId = $regionCodesToIds[$countryCodesToIds[$csvLine[0]]][$csvLine[1]];
|
| 256 |
}
|
| 257 |
-
|
| 258 |
if (count($csvLine)==9) {
|
| 259 |
// we are searching for postcodes in ranges & including cities
|
| 260 |
if ($csvLine[2] == '*' || $csvLine[2] == '') {
|
|
@@ -262,38 +260,38 @@ class Auctionmaid_Matrixrate_Model_Mysql4_Carrier_Matrixrate extends Mage_Core_M
|
|
| 262 |
} else {
|
| 263 |
$city = $csvLine[2];
|
| 264 |
}
|
| 265 |
-
|
| 266 |
-
|
| 267 |
if ($csvLine[3] == '*' || $csvLine[3] == '') {
|
| 268 |
$zip = '';
|
| 269 |
} else {
|
| 270 |
$zip = $csvLine[3];
|
| 271 |
}
|
| 272 |
-
|
| 273 |
-
|
| 274 |
if ($csvLine[4] == '*' || $csvLine[4] == '') {
|
| 275 |
$zip_to = '';
|
| 276 |
} else {
|
| 277 |
$zip_to = $csvLine[4];
|
| 278 |
}
|
| 279 |
-
|
| 280 |
-
|
| 281 |
if (!$this->_isPositiveDecimalNumber($csvLine[5]) || $csvLine[5] == '*' || $csvLine[5] == '') {
|
| 282 |
$exceptions[] = Mage::helper('shipping')->__('Invalid %s From "%s" in the Row #%s', $conditionFullName, $csvLine[5], ($k+1));
|
| 283 |
} else {
|
| 284 |
$csvLine[5] = (float)$csvLine[5];
|
| 285 |
}
|
| 286 |
-
|
| 287 |
if (!$this->_isPositiveDecimalNumber($csvLine[6])) {
|
| 288 |
$exceptions[] = Mage::helper('shipping')->__('Invalid %s To "%s" in the Row #%s', $conditionFullName, $csvLine[6], ($k+1));
|
| 289 |
} else {
|
| 290 |
$csvLine[6] = (float)$csvLine[6];
|
| 291 |
}
|
| 292 |
-
|
| 293 |
-
|
| 294 |
$data[] = array('website_id'=>$websiteId, 'dest_country_id'=>$countryId, 'dest_region_id'=>$regionId, 'dest_city'=>$city, 'dest_zip'=>$zip, 'dest_zip_to'=>$zip_to, 'condition_name'=>$conditionName, 'condition_from_value'=>$csvLine[5],'condition_to_value'=>$csvLine[6], 'price'=>$csvLine[7], 'delivery_type'=>$csvLine[8]);
|
| 295 |
|
| 296 |
-
}
|
| 297 |
else {
|
| 298 |
|
| 299 |
if ($csvLine[2] == '*' || $csvLine[2] == '') {
|
|
@@ -301,16 +299,16 @@ class Auctionmaid_Matrixrate_Model_Mysql4_Carrier_Matrixrate extends Mage_Core_M
|
|
| 301 |
} else {
|
| 302 |
$zip = $csvLine[2]."%";
|
| 303 |
}
|
| 304 |
-
|
| 305 |
$city='';
|
| 306 |
$zip_to = '';
|
| 307 |
-
|
| 308 |
if (!$this->_isPositiveDecimalNumber($csvLine[3]) || $csvLine[3] == '*' || $csvLine[3] == '') {
|
| 309 |
$exceptions[] = Mage::helper('shipping')->__('Invalid %s From "%s" in the Row #%s', $conditionFullName, $csvLine[3], ($k+1));
|
| 310 |
} else {
|
| 311 |
$csvLine[3] = (float)$csvLine[3];
|
| 312 |
}
|
| 313 |
-
|
| 314 |
if (!$this->_isPositiveDecimalNumber($csvLine[4])) {
|
| 315 |
$exceptions[] = Mage::helper('shipping')->__('Invalid %s To "%s" in the Row #%s', $conditionFullName, $csvLine[4], ($k+1));
|
| 316 |
} else {
|
| 42 |
$table = Mage::getSingleton('core/resource')->getTableName('matrixrate_shipping/matrixrate');
|
| 43 |
|
| 44 |
if ($zipRangeSet) {
|
| 45 |
+
# Want to search for postcodes within a range
|
| 46 |
$zipSearchString = $read->quoteInto(" AND dest_zip<=? ", $postcode).
|
| 47 |
$read->quoteInto(" AND dest_zip_to>=? )", $postcode);
|
| 48 |
} else {
|
| 49 |
$zipSearchString = $read->quoteInto(" AND ? LIKE dest_zip )", $postcode);
|
| 50 |
+
}
|
| 51 |
|
| 52 |
for ($j=0;$j<8;$j++)
|
| 53 |
{
|
| 54 |
|
| 55 |
+
$select = $read->select()->from($table);
|
| 56 |
switch($j) {
|
| 57 |
case 0:
|
| 58 |
$select->where(
|
| 69 |
$read->quoteInto(" AND dest_region_id=? AND dest_city=''", $request->getDestRegionId()).
|
| 70 |
$zipSearchString
|
| 71 |
);
|
| 72 |
+
break;
|
| 73 |
case 2:
|
| 74 |
$select->where(
|
| 75 |
$read->quoteInto(" (dest_country_id=? ", $request->getDestCountryId()).
|
| 77 |
$read->quoteInto(" AND STRCMP(LOWER(dest_city),LOWER(?)) = 0 AND dest_zip='')", $request->getDestCity())
|
| 78 |
);
|
| 79 |
break;
|
| 80 |
+
|
| 81 |
case 3:
|
| 82 |
$select->where(
|
| 83 |
$read->quoteInto(" (dest_country_id=? ", $request->getDestCountryId()).
|
| 97 |
$read->quoteInto(" AND dest_region_id=? AND dest_city='' AND dest_zip='') ", $request->getDestRegionId())
|
| 98 |
);
|
| 99 |
break;
|
| 100 |
+
|
| 101 |
case 6:
|
| 102 |
$select->where(
|
| 103 |
$read->quoteInto(" (dest_country_id=? AND dest_region_id='0' AND dest_city='' AND dest_zip='') ", $request->getDestCountryId())
|
| 104 |
);
|
| 105 |
break;
|
| 106 |
+
|
| 107 |
case 7:
|
| 108 |
$select->where(
|
| 109 |
" (dest_country_id='0' AND dest_region_id='0' AND dest_zip='')"
|
| 110 |
);
|
| 111 |
break;
|
| 112 |
}
|
| 113 |
+
|
| 114 |
+
|
| 115 |
if (is_array($request->getConditionName())) {
|
| 116 |
$i = 0;
|
| 117 |
foreach ($request->getConditionName() as $conditionName) {
|
| 121 |
$select->orWhere('condition_name=?', $conditionName);
|
| 122 |
}
|
| 123 |
$select->where('condition_from_value<=?', $request->getData($conditionName));
|
| 124 |
+
|
| 125 |
+
|
| 126 |
$i++;
|
| 127 |
}
|
| 128 |
} else {
|
| 130 |
$select->where('condition_from_value<=?', $request->getData($request->getConditionName()));
|
| 131 |
$select->where('condition_to_value>=?', $request->getData($request->getConditionName()));
|
| 132 |
}
|
| 133 |
+
|
|
|
|
| 134 |
$select->where('website_id=?', $request->getWebsiteId());
|
| 135 |
+
|
| 136 |
$select->order('dest_country_id DESC');
|
| 137 |
$select->order('dest_region_id DESC');
|
| 138 |
$select->order('dest_zip DESC');
|
| 139 |
$select->order('condition_from_value DESC');
|
| 140 |
+
|
| 141 |
/*
|
| 142 |
pdo has an issue. we cannot use bind
|
| 143 |
*/
|
| 144 |
+
|
| 145 |
+
|
|
|
|
| 146 |
$newdata=array();
|
| 147 |
$row = $read->fetchAll($select);
|
| 148 |
if (!empty($row))
|
| 252 |
} else {
|
| 253 |
$regionId = $regionCodesToIds[$countryCodesToIds[$csvLine[0]]][$csvLine[1]];
|
| 254 |
}
|
| 255 |
+
|
| 256 |
if (count($csvLine)==9) {
|
| 257 |
// we are searching for postcodes in ranges & including cities
|
| 258 |
if ($csvLine[2] == '*' || $csvLine[2] == '') {
|
| 260 |
} else {
|
| 261 |
$city = $csvLine[2];
|
| 262 |
}
|
| 263 |
+
|
| 264 |
+
|
| 265 |
if ($csvLine[3] == '*' || $csvLine[3] == '') {
|
| 266 |
$zip = '';
|
| 267 |
} else {
|
| 268 |
$zip = $csvLine[3];
|
| 269 |
}
|
| 270 |
+
|
| 271 |
+
|
| 272 |
if ($csvLine[4] == '*' || $csvLine[4] == '') {
|
| 273 |
$zip_to = '';
|
| 274 |
} else {
|
| 275 |
$zip_to = $csvLine[4];
|
| 276 |
}
|
| 277 |
+
|
| 278 |
+
|
| 279 |
if (!$this->_isPositiveDecimalNumber($csvLine[5]) || $csvLine[5] == '*' || $csvLine[5] == '') {
|
| 280 |
$exceptions[] = Mage::helper('shipping')->__('Invalid %s From "%s" in the Row #%s', $conditionFullName, $csvLine[5], ($k+1));
|
| 281 |
} else {
|
| 282 |
$csvLine[5] = (float)$csvLine[5];
|
| 283 |
}
|
| 284 |
+
|
| 285 |
if (!$this->_isPositiveDecimalNumber($csvLine[6])) {
|
| 286 |
$exceptions[] = Mage::helper('shipping')->__('Invalid %s To "%s" in the Row #%s', $conditionFullName, $csvLine[6], ($k+1));
|
| 287 |
} else {
|
| 288 |
$csvLine[6] = (float)$csvLine[6];
|
| 289 |
}
|
| 290 |
+
|
| 291 |
+
|
| 292 |
$data[] = array('website_id'=>$websiteId, 'dest_country_id'=>$countryId, 'dest_region_id'=>$regionId, 'dest_city'=>$city, 'dest_zip'=>$zip, 'dest_zip_to'=>$zip_to, 'condition_name'=>$conditionName, 'condition_from_value'=>$csvLine[5],'condition_to_value'=>$csvLine[6], 'price'=>$csvLine[7], 'delivery_type'=>$csvLine[8]);
|
| 293 |
|
| 294 |
+
}
|
| 295 |
else {
|
| 296 |
|
| 297 |
if ($csvLine[2] == '*' || $csvLine[2] == '') {
|
| 299 |
} else {
|
| 300 |
$zip = $csvLine[2]."%";
|
| 301 |
}
|
| 302 |
+
|
| 303 |
$city='';
|
| 304 |
$zip_to = '';
|
| 305 |
+
|
| 306 |
if (!$this->_isPositiveDecimalNumber($csvLine[3]) || $csvLine[3] == '*' || $csvLine[3] == '') {
|
| 307 |
$exceptions[] = Mage::helper('shipping')->__('Invalid %s From "%s" in the Row #%s', $conditionFullName, $csvLine[3], ($k+1));
|
| 308 |
} else {
|
| 309 |
$csvLine[3] = (float)$csvLine[3];
|
| 310 |
}
|
| 311 |
+
|
| 312 |
if (!$this->_isPositiveDecimalNumber($csvLine[4])) {
|
| 313 |
$exceptions[] = Mage::helper('shipping')->__('Invalid %s To "%s" in the Row #%s', $conditionFullName, $csvLine[4], ($k+1));
|
| 314 |
} else {
|
package.xml
CHANGED
|
@@ -1,12 +1,14 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Auctionmaid_Matrxrate</name>
|
| 4 |
-
<version>2.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
-
<summary>Multiple Table Rates via CSV.
|
|
|
|
|
|
|
| 10 |
<description>Supports following:
|
| 11 |
|
| 12 |
- multiple table rate via csv file
|
|
@@ -18,9 +20,9 @@
|
|
| 18 |
- collection only option</description>
|
| 19 |
<notes>1 - The export csv option is currently disabled. This is so the extension does not conflict with the existing tablerates. There are no plans to resolve this - if you need to view the data look in phpmyadmin.</notes>
|
| 20 |
<authors><author><name>Karen Baker</name><user>auto-converted</user><email>enquiries@auctionmaid.com</email></author></authors>
|
| 21 |
-
<date>2009-04-
|
| 22 |
-
<time>
|
| 23 |
-
<contents><target name="magecommunity"><dir name="Auctionmaid"><dir name="Adminhtml"><dir name="Model"><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Shipping"><file name="Matrixrate.php" hash="3845daf2530ea28f4c1c9ef0896e4590"/></dir></dir><dir name="Source"><dir name="Shipping"><file name="Matrixrate.php" hash="bf0ab44901dacc3774a8afab91c08848"/></dir></dir></dir></dir></dir></dir><dir name="docs"><file name="AuctionMaid MatrixRate Shipping Module.pdf" hash="5046ebd65b62a3b66556d8efc8a9976a"/><file name="manual install.sql" hash="b1bf0f9b9597d64777a3704f8064b011"/></dir><dir name="example"><dir name="7-col"><file name="export_all_products.csv" hash="ee76a59cc041f80012dc547febaf5393"/><file name="tablerates - item tofrom.csv" hash="c21b4cbf21aefa5cc590ccd2ff073a04"/><file name="tablerates - price tofrom.csv" hash="834af0aeb1aa98abf91f637015f5e3ba"/><file name="tablerates - weight tofrom.csv" hash="c2d26d1097c6a6b1641353b548437421"/></dir><dir name="9-col"><file name="AusRanges.csv" hash="7884e9c2a15f495ce6a80091c38478b5"/><file name="weight postcode range.csv" hash="8b0f12598742f57a5444bfee16219603"/><file name="weight postcode starts with.csv" hash="b83d1c8f6798a42186a63116fc5575b3"/></dir></dir><dir name="Freeoptionalshipping"><dir name="etc"><file name="config.xml" hash="f450793ee1f015b5ea0d84ec910c3d76"/><file name="system.xml" hash="7f1fb48e01e1299bf449a769084bddbc"/></dir><dir name="Model"><dir name="Carrier"><file name="Freeoptionalshipping.php" hash="
|
| 24 |
<compatible/>
|
| 25 |
<dependencies/>
|
| 26 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Auctionmaid_Matrxrate</name>
|
| 4 |
+
<version>2.0.5</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
+
<summary>Multiple Table Rates managed via CSV.
|
| 10 |
+
Ability to filter via Price, Weight or #Items vs Destination. Enhanced filtering on country, region, city, zipcode.
|
| 11 |
+
Suitable for all countries incl UK, US, AUS, Europe.</summary>
|
| 12 |
<description>Supports following:
|
| 13 |
|
| 14 |
- multiple table rate via csv file
|
| 20 |
- collection only option</description>
|
| 21 |
<notes>1 - The export csv option is currently disabled. This is so the extension does not conflict with the existing tablerates. There are no plans to resolve this - if you need to view the data look in phpmyadmin.</notes>
|
| 22 |
<authors><author><name>Karen Baker</name><user>auto-converted</user><email>enquiries@auctionmaid.com</email></author></authors>
|
| 23 |
+
<date>2009-04-25</date>
|
| 24 |
+
<time>21:41:43</time>
|
| 25 |
+
<contents><target name="magecommunity"><dir name="Auctionmaid"><dir name="Adminhtml"><dir name="Model"><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Shipping"><file name="Matrixrate.php" hash="3845daf2530ea28f4c1c9ef0896e4590"/></dir></dir><dir name="Source"><dir name="Shipping"><file name="Matrixrate.php" hash="bf0ab44901dacc3774a8afab91c08848"/></dir></dir></dir></dir></dir></dir><dir name="docs"><file name="AuctionMaid MatrixRate Shipping Module.pdf" hash="5046ebd65b62a3b66556d8efc8a9976a"/><file name="manual install.sql" hash="b1bf0f9b9597d64777a3704f8064b011"/></dir><dir name="example"><dir name="7-col"><file name="export_all_products.csv" hash="ee76a59cc041f80012dc547febaf5393"/><file name="tablerates - item tofrom.csv" hash="c21b4cbf21aefa5cc590ccd2ff073a04"/><file name="tablerates - price tofrom.csv" hash="834af0aeb1aa98abf91f637015f5e3ba"/><file name="tablerates - weight tofrom.csv" hash="c2d26d1097c6a6b1641353b548437421"/></dir><dir name="9-col"><file name="AusRanges.csv" hash="7884e9c2a15f495ce6a80091c38478b5"/><file name="weight postcode range.csv" hash="8b0f12598742f57a5444bfee16219603"/><file name="weight postcode starts with.csv" hash="b83d1c8f6798a42186a63116fc5575b3"/></dir></dir><dir name="Freeoptionalshipping"><dir name="etc"><file name="config.xml" hash="f450793ee1f015b5ea0d84ec910c3d76"/><file name="system.xml" hash="7f1fb48e01e1299bf449a769084bddbc"/></dir><dir name="Model"><dir name="Carrier"><file name="Freeoptionalshipping.php" hash="3faf036413d22a0dfc9edc7e12df7c1f"/></dir></dir></dir><dir name="Matrixrate"><dir name="etc"><file name="config.xml" hash="2fa5eb007a21cd14c06a51afe267a376"/><file name="system.xml" hash="cf1c8c2b472453da081c12cba74ef4d1"/></dir><dir name="Model"><dir name="Carrier"><file name="Matrixrate.php" hash="0b081cf566c4899573a74aa48bac7b8d"/></dir><dir name="Mysql4"><dir name="Carrier"><file name="Matrixrate.php" hash="70c95a5afe29e8a7bcbd832545b1a5e0"/><dir name="Matrixrate"><file name="Collection.php" hash="adf9282dce1467f2d47e68b4ecc49de9"/></dir></dir></dir></dir><dir name="sql"><dir name="matrixrate_setup"><file name="mysql4-install-1.0.5.php" hash="32ea533fd01276e78322ae734446dc93"/><file name="mysql4-install-2.0.0.php" hash="32ea533fd01276e78322ae734446dc93"/><file name="mysql4-install-2.0.1.php" hash="505940c2071753011f03a92a18fe6141"/><file name="mysql4-uninstall-2.0.0.php" hash="7efdd041b23194f1fbb9b0afc657bf1e"/><file name="mysql4-uninstall-2.0.1.php" hash="7efdd041b23194f1fbb9b0afc657bf1e"/><file name="mysql4-upgrade-2.0.0.php" hash="32ea533fd01276e78322ae734446dc93"/><file name="mysql4-upgrade-2.0.1.php" hash="505940c2071753011f03a92a18fe6141"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Auctionmaid_Freeoptionalshipping.xml" hash="a8bceecaca2402682f1713222ce23b4d"/><file name="Auctionmaid_Matrixrate.xml" hash="bde75a0463f7dc40affc8b2ce812ec91"/></dir></target></contents>
|
| 26 |
<compatible/>
|
| 27 |
<dependencies/>
|
| 28 |
</package>
|
