// small fix

This commit is contained in:
Rémi Gaillard
2013-07-18 16:34:35 +02:00
parent d25689d00f
commit 272365cbe0
+4 -2
View File
@@ -937,9 +937,11 @@ class CarrierCore extends ObjectModel
return false;
}
public function getRangeObject()
public function getRangeObject($shipping_method = false)
{
$shipping_method = $this->getShippingMethod();
if (!$shipping_method)
$shipping_method = $this->getShippingMethod();
if ($shipping_method == Carrier::SHIPPING_METHOD_WEIGHT)
return new RangeWeight();
elseif ($shipping_method == Carrier::SHIPPING_METHOD_PRICE)