Таблица ставок не работает на бесплатной доставке
Мне нужно отобразить список бесплатных вариантов доставки для грузовых компаний, я использую расширение "Webshopapps Matrix Rates", отлично работает с ценами
Но я, когда цена доставки 0 (бесплатно), это не работает (см. Изображение в ссылке)
http://www.mediafire.com/view/2bc647q7yynn926/screen1.jpg
Вот код
protected $_code = 'matrixrate';
protected $_default_condition_name = 'package_weight';
protected $_conditionNames = array();
public function __construct()
{
parent::__construct();
foreach ($this->getCode('condition_name') as $k=>$v) {
$this->_conditionNames[] = $k;
}
}
/**
* Enter description here...
*
* @param Mage_Shipping_Model_Rate_Request $data
* @return Mage_Shipping_Model_Rate_Result
*/
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
{
if (!$this->getConfigFlag('active')) {
return false;
}
// exclude Virtual products price from Package value if pre-configured
if (!$this->getConfigFlag('include_virtual_price') && $request->getAllItems()) {
foreach ($request->getAllItems() as $item) {
if ($item->getParentItem()) {
continue;
}
if ($item->getHasChildren() && $item->isShipSeparately()) {
foreach ($item->getChildren() as $child) {
if ($child->getProduct()->isVirtual() || $item->getProductType() == 'downloadable') {
$request->setPackageValue($request->getPackageValue() - $child->getBaseRowTotal());
}
}
} elseif ($item->getProduct()->isVirtual() || $item->getProductType() == 'downloadable') {
$request->setPackageValue($request->getPackageValue() - $item->getBaseRowTotal());
}
}
}
// Free shipping by qty
$freeQty = 0;
if ($request->getAllItems()) {
foreach ($request->getAllItems() as $item) {
if ($item->getProduct()->isVirtual() || $item->getParentItem()) {
continue;
}
if ($item->getHasChildren() && $item->isShipSeparately()) {
foreach ($item->getChildren() as $child) {
if ($child->getFreeShipping() && !$child->getProduct()->isVirtual()) {
$freeQty += $item->getQty() * ($child->getQty() - (is_numeric($child->getFreeShipping()) ? $child->getFreeShipping() : 0));
}
}
} elseif ($item->getFreeShipping()) {
$freeQty += ($item->getQty() - (is_numeric($item->getFreeShipping()) ? $item->getFreeShipping() : 0));
}
}
}
if (!$request->getMRConditionName()) {
$request->setMRConditionName($this->getConfigData('condition_name') ? $this->getConfigData('condition_name') : $this->_default_condition_name);
}
// Package weight and qty free shipping
$oldWeight = $request->getPackageWeight();
$oldQty = $request->getPackageQty();
if ($this->getConfigData('allow_free_shipping_promotions') && !$this->getConfigData('include_free_ship_items')) {
$request->setPackageWeight($request->getFreeMethodWeight());
$request->setPackageQty($oldQty - $freeQty);
}
$result = Mage::getModel('shipping/rate_result');
$ratearray = $this->getRate($request);
$freeShipping=false;
if (is_numeric($this->getConfigData('free_shipping_threshold')) &&
$this->getConfigData('free_shipping_threshold')>0 &&
$request->getPackageValue()>$this->getConfigData('free_shipping_threshold')) {
$freeShipping=true;
}
if ($this->getConfigData('allow_free_shipping_promotions') &&
($request->getFreeShipping() === true ||
$request->getPackageQty() == $this->getFreeBoxes()))
{
$freeShipping=true;
}
if ($freeShipping)
{
$method = Mage::getModel('shipping/rate_result_method');
$method->setCarrier('matrixrate');
$method->setCarrierTitle($this->getConfigData('title'));
$method->setMethod('matrixrate_free');
$method->setPrice('0.00');
$method->setMethodTitle($this->getConfigData('free_method_text'));
$result->append($method);
if ($this->getConfigData('show_only_free')) {
return $result;
}
}
foreach ($ratearray as $rate)
{
if (!empty($rate) && $rate['price'] >= 0) {
$method = Mage::getModel('shipping/rate_result_method');
$method->setCarrier('matrixrate');
$method->setCarrierTitle($this->getConfigData('title'));
$method->setMethod('matrixrate_'.$rate['pk']);
$method->setMethodTitle(Mage::helper('matrixrate')->__($rate['delivery_type']));
$shippingPrice = $this->getFinalPriceWithHandlingFee($rate['price']);
$method->setCost($rate['cost']);
$method->setDeliveryType($rate['delivery_type']);
$method->setPrice($shippingPrice);
$result->append($method);
}
}
return $result;
}
public function getRate(Mage_Shipping_Model_Rate_Request $request)
{
return Mage::getResourceModel('matrixrate_shipping/carrier_matrixrate')->getNewRate($request,$this->getConfigFlag('zip_range'));
}
/**
* Get allowed shipping methods
*
* @return array
*/
public function getAllowedMethods()
{
return array('matrixrate'=>$this->getConfigData('name'));
}
public function getCode($type, $code='')
{
$codes = array(
'condition_name'=>array(
'package_weight' => Mage::helper('shipping')->__('Weight vs. Destination'),
'package_value' => Mage::helper('shipping')->__('Price vs. Destination'),
'package_qty' => Mage::helper('shipping')->__('# of Items vs. Destination'),
),
'condition_name_short'=>array(
'package_weight' => Mage::helper('shipping')->__('Weight'),
'package_value' => Mage::helper('shipping')->__('Order Subtotal'),
'package_qty' => Mage::helper('shipping')->__('# of Items'),
),
);
if (!isset($codes[$type])) {
throw Mage::exception('Mage_Shipping', Mage::helper('shipping')->__('Invalid Matrix Rate code type: %s', $type));
}
if (''===$code) {
return $codes[$type];
}
if (!isset($codes[$type][$code])) {
throw Mage::exception('Mage_Shipping', Mage::helper('shipping')->__('Invalid Matrix Rate code for type %s: %s', $type, $code));
}
return $codes[$type][$code];
}
}
Есть какие-нибудь подсказки?
1 ответ
Я не уверен, что вы пытаетесь достичь, но я хотел, чтобы для разных категорий были разные цены доставки, при этом цена доставки была максимальной из категорий в корзине, бесплатная доставка выше определенной цены (и одна категория, подарок) ваучеры, с бесплатной доставкой в любом случае, если она сама по себе), и разные цены доставки для разных стран.
Я использовал http://www.tall-paul.co.uk/2013/09/15/category-based-shipping-in-magento/ и адаптировал его, чтобы дать мне подробные правила, которые я хотел.