2016-01-07 3 views
-2

Скажите, пожалуйста, как изменить параметр способ доставки MagentoКак изменить способ доставки в Magento ..?

Администратор Panel-> Система-> Конфигурация-> продаж-> Доставка Methods-> USPS-> Разрешенные методы

изменить «Стандартная почта» на «Почта первого класса».

ответ

0

Наконец я пришел с ответом Goto-> Приложение \ код \ Local \ Mage \ Sales \ Model \ Quote \ Адрес \ Rate.php

public function importShippingRate(Mage_Shipping_Model_Rate_Result_Abstract $rate) 
{ 
    if($rate->getMethodTitle() == 'Standard Post'){ 
      **/* Change here */** 
      $shipping_method='First Class Mail'; 
    } 
    else 
    { 
      $shipping_method=$rate->getMethodTitle(); 
    } 
    if ($rate instanceof Mage_Shipping_Model_Rate_Result_Error) { 
     $this 
      ->setCode($rate->getCarrier().'_error') 
      ->setCarrier($rate->getCarrier()) 
      ->setCarrierTitle($rate->getCarrierTitle()) 
      ->setErrorMessage($rate->getErrorMessage()) 
     ; 
    } elseif ($rate instanceof Mage_Shipping_Model_Rate_Result_Method) { 
     $this 
      ->setCode($rate->getCarrier().'_'.$rate->getMethod()) 
      ->setCarrier($rate->getCarrier()) 
      ->setCarrierTitle($rate->getCarrierTitle()) 
      ->setMethod($rate->getMethod()) 
      //->setMethodTitle($rate->getMethodTitle()) 
      **/* Change here */** 
      ->setMethodTitle($shipping_method) 
      ->setMethodDescription($rate->getMethodDescription()) 
      ->setPrice($rate->getPrice()) 
     ; 
    } 
    return $this; 
} 

 Смежные вопросы

  • Нет связанных вопросов^_^