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.7 |
Comparing to | |
See all releases |
Code changes from version 2.0.6 to 2.0.7
app/code/community/Auctionmaid/Freeoptionalshipping/Model/Carrier/Freeoptionalshipping.php
CHANGED
@@ -49,7 +49,6 @@ class Auctionmaid_Freeoptionalshipping_Model_Carrier_Freeoptionalshipping
|
|
49 |
|
50 |
|
51 |
$result = Mage::getModel('shipping/rate_result');
|
52 |
-
// $packageValue = $request->getBaseCurrency()->convert($request->getPackageValueWithDiscount(), $request->getPackageCurrency());
|
53 |
$packageValue = $request->getPackageValueWithDiscount();
|
54 |
|
55 |
$this->_updateFreeMethodQuote($request);
|
@@ -62,7 +61,7 @@ class Auctionmaid_Freeoptionalshipping_Model_Carrier_Freeoptionalshipping
|
|
62 |
// now make sure free shipping is allowed for this product
|
63 |
$items = $request->getAllItems();
|
64 |
foreach($items as $item) {
|
65 |
-
$product = Mage::getModel('catalog/product')->loadByAttribute('
|
66 |
if ($product->getData('exclude_free_shipping')) {
|
67 |
return false;
|
68 |
}
|
49 |
|
50 |
|
51 |
$result = Mage::getModel('shipping/rate_result');
|
|
|
52 |
$packageValue = $request->getPackageValueWithDiscount();
|
53 |
|
54 |
$this->_updateFreeMethodQuote($request);
|
61 |
// now make sure free shipping is allowed for this product
|
62 |
$items = $request->getAllItems();
|
63 |
foreach($items as $item) {
|
64 |
+
$product = Mage::getModel('catalog/product')->loadByAttribute('entity_id', $item->getProductId(), 'exclude_free_shipping');
|
65 |
if ($product->getData('exclude_free_shipping')) {
|
66 |
return false;
|
67 |
}
|