コード例 #1
0
 public function fetch(Mage_Sales_Model_Quote_Address $address)
 {
     $amount = $address->getShippingAmount();
     $title = Mage::helper('sales')->__('Shipping & Handling');
     if ($address->getShippingDescription()) {
         $title .= ' (' . $address->getShippingDescription() . ')';
     }
     $address->addTotal(array('code' => $this->getCode(), 'title' => $title, 'value' => $address->getShippingAmount()));
     return $this;
 }
コード例 #2
0
 /**
  * Fetch totals
  *
  * @param Mage_Sales_Model_Quote_Address $address
  * @return Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Shipping
  */
 public function fetchTotals(Mage_Sales_Model_Quote_Address $address)
 {
     $amount = $address->getShippingAmount();
     if ($amount != 0) {
         $title = Mage::helper('sales')->__('Shipping & Handling');
         if ($address->getShippingDescription()) {
             $title .= sprintf(' (%s)', $address->getShippingDescription());
         }
         $address->addTotal(array('code' => 'shipping', 'title' => $title, 'value' => $address->getShippingAmount()));
     }
     return $this;
 }
コード例 #3
0
ファイル: Quote.php プロジェクト: arslbbt/mangentovies
 /**
  * Convert quote address model to order
  *
  * @param   Mage_Sales_Model_Quote $quote
  * @return  Mage_Sales_Model_Order
  */
 public function addressToOrder(Mage_Sales_Model_Quote_Address $address, $order = null)
 {
     if (!$order instanceof Mage_Sales_Model_Order) {
         $order = $this->toOrder($address->getQuote());
     }
     $order->setWeight($address->getWeight())->setShippingMethod($address->getShippingMethod())->setShippingDescription($address->getShippingDescription())->setShippingRate($address->getShippingRate())->setSubtotal($address->getSubtotal())->setTaxAmount($address->getTaxAmount())->setDiscountAmount($address->getDiscountAmount())->setShippingAmount($address->getShippingAmount())->setGiftcertAmount($address->getGiftcertAmount())->setCustbalanceAmount($address->getCustbalanceAmount())->setGrandTotal($address->getGrandTotal())->setBaseSubtotal($address->getBaseSubtotal())->setBaseTaxAmount($address->getBaseTaxAmount())->setBaseDiscountAmount($address->getBaseDiscountAmount())->setBaseShippingAmount($address->getBaseShippingAmount())->setBaseGiftcertAmount($address->getBaseGiftcertAmount())->setBaseCustbalanceAmount($address->getBaseCustbalanceAmount())->setBaseGrandTotal($address->getBaseGrandTotal());
     Mage::dispatchEvent('sales_convert_quote_address_to_order', array('address' => $address, 'order' => $order));
     return $order;
 }
コード例 #4
0
 public function fetch(Mage_Sales_Model_Quote_Address $address)
 {
     $this->_method = $address->getQuote()->getPayment()->getMethod();
     $label = Mage::helper('msp')->getFeeLabel($this->_method);
     $quote = $address->getQuote();
     $code = $quote->getPayment()->getMethod();
     $amount = $address->getShippingAmount();
     if ($amount != 0 || $address->getShippingDescription()) {
         if ($address->getServicecostAmount()) {
             $address->addTotal(array('code' => $this->getCode(), 'title' => $label, 'value' => $address->getServicecostPdf()));
         }
     }
     return $this;
 }
コード例 #5
0
ファイル: Shipping.php プロジェクト: vberzsin/shop
 /**
  * Add shipping totals information to address object
  *
  * @param   Mage_Sales_Model_Quote_Address $address
  * @return  Mage_Sales_Model_Quote_Address_Total_Shipping
  */
 public function fetch(Mage_Sales_Model_Quote_Address $address)
 {
     $amount = $address->getShippingAmount();
     if ($amount != 0 || $address->getShippingDescription()) {
         $title = Mage::helper('sales')->__('Shipping & Handling');
         $desc = $address->getShippingDescription();
         switch ($desc) {
             case "Versandkostenpauschale - Versandkostenpauschale":
                 $desc = "Versandkostenpauschale";
                 break;
             case "Versandkostenfrei - Versandkostenfrei":
                 $desc = "Versandkostenfrei";
                 break;
         }
         $title .= ' (' . $desc . ')';
         $value = $address->getShippingAmount();
         $address->addTotal(array('code' => $this->getCode(), 'title' => $title, 'value' => $value));
     }
     return $this;
 }
コード例 #6
0
ファイル: Shipping.php プロジェクト: technomagegithub/colb2b
 /**
  * Add shipping totals information to address object
  *
  * @param   Mage_Sales_Model_Quote_Address $address
  * @return  Mage_Sales_Model_Quote_Address_Total_Shipping
  */
 public function fetch(Mage_Sales_Model_Quote_Address $address)
 {
     $amount = $address->getShippingAmount();
     if ($amount != 0 || $address->getShippingDescription()) {
         $title = Mage::helper('sales')->__('Shipping & Handling');
         if ($address->getShippingDescription()) {
             $description = str_replace("Express courier - ", "", $address->getShippingDescription());
             $description = str_replace("Corriere espresso - ", "", $address->getShippingDescription());
             $title .= ' (' . $description . ')';
         }
         $address->addTotal(array('code' => $this->getCode(), 'title' => $title, 'value' => $address->getShippingAmount()));
     }
     return $this;
 }
コード例 #7
0
ファイル: Shipping.php プロジェクト: sagmahajan/aswan_release
 /**
  * Add shipping totals information to address object
  *
  * @param   Mage_Sales_Model_Quote_Address $address
  * @return  Mage_Sales_Model_Quote_Address_Total_Shipping
  */
 public function fetch(Mage_Sales_Model_Quote_Address $address)
 {
     $amount = $address->getShippingAmount();
     if ($amount != 0 || $address->getShippingDescription()) {
         $title = Mage::helper('sales')->__('Shipping Charges');
         if ($address->getShippingDescription()) {
             $desc = $address->getShippingDescription();
             $_pos = strpos($desc, "-");
             if ($_pos === false) {
                 $title .= ' (' . $address->getShippingDescription() . ')';
             } else {
                 $_temp = explode("-", $desc);
                 if (isset($_temp[1])) {
                     $title .= ' (' . trim($_temp[1]) . ')';
                 }
             }
             //   $title .= ' (' . $address->getShippingDescription() . ')';
         }
         $address->addTotal(array('code' => $this->getCode(), 'title' => $title, 'value' => $address->getShippingAmount()));
     }
     return $this;
 }