当前位置: 首页>>代码示例>>PHP>>正文


PHP Mage_Sales_Model_Order_Address::getCountryId方法代码示例

本文整理汇总了PHP中Mage_Sales_Model_Order_Address::getCountryId方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Sales_Model_Order_Address::getCountryId方法的具体用法?PHP Mage_Sales_Model_Order_Address::getCountryId怎么用?PHP Mage_Sales_Model_Order_Address::getCountryId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mage_Sales_Model_Order_Address的用法示例。


在下文中一共展示了Mage_Sales_Model_Order_Address::getCountryId方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: setReceiverAddress

 /**
  *
  * @param Mage_Sales_Model_Order_Address $shippingAddress
  *
  * @return \Zitec_Dpd_Api_Shipment_Save
  */
 public function setReceiverAddress(Mage_Sales_Model_Order_Address $shippingAddress)
 {
     $this->setShipmentList(Zitec_Dpd_Api_Configs::SHIPMENT_LIST_RECEIVER_NAME, $shippingAddress->getFirstname() . ' ' . $shippingAddress->getLastname());
     $this->setShipmentList(Zitec_Dpd_Api_Configs::SHIPMENT_LIST_RECEIVER_FIRM_NAME, $shippingAddress->getCompany());
     $this->setShipmentList(Zitec_Dpd_Api_Configs::SHIPMENT_LIST_RECEIVER_COUNTRY_CODE, $shippingAddress->getCountryId());
     $this->setShipmentList(Zitec_Dpd_Api_Configs::SHIPMENT_LIST_RECEIVER_ZIP_CODE, $shippingAddress->getPostcode());
     $this->setShipmentList(Zitec_Dpd_Api_Configs::SHIPMENT_LIST_RECEIVER_CITY, $shippingAddress->getCity());
     $street = is_array($shippingAddress->getStreetFull()) ? $shippingAddress->getStreetFull() : explode("\n", $shippingAddress->getStreetFull());
     $this->setShipmentList(Zitec_Dpd_Api_Configs::SHIPMENT_LIST_RECEIVER_STREET, implode(" ", $street));
     $this->setShipmentList(Zitec_Dpd_Api_Configs::SHIPMENT_LIST_RECEIVER_HOUSE_NO, null);
     $this->setShipmentList(Zitec_Dpd_Api_Configs::SHIPMENT_LIST_RECEIVER_PHONE_NO, $shippingAddress->getTelephone());
     return $this;
 }
开发者ID:GabrielCC,项目名称:zitec-dpd-master,代码行数:19,代码来源:Save.php

示例2: _setReceiverAddress

 protected function _setReceiverAddress(Mage_Sales_Model_Order_Address $address, array &$receiver)
 {
     $receiver['Address']['careOfName'] = $address->getCareOf();
     $countryId = $address->getCountryId();
     switch ($countryId) {
         case 'DE':
             $receiver['Address']['Zip']['germany'] = $address->getPostcode();
             break;
         case 'UK':
             $receiver['Address']['Zip']['england'] = $address->getPostcode();
             break;
         default:
             $receiver['Address']['Zip']['other'] = $address->getPostcode();
             break;
     }
     unset($receiver['Address']['Zip']['__country_id__']);
     $receiver['Address']['city'] = $address->getCity();
     $receiver['Address']['Origin']['country'] = Mage::getModel('directory/country')->load($countryId)->getName();
     $receiver['Address']['Origin']['countryISOCode'] = $countryId;
 }
开发者ID:igorvasiliev4,项目名称:magento_code,代码行数:20,代码来源:Data.php

示例3: importOrderAddress

 /**
  * Import address data from order address
  *
  * @param   Mage_Sales_Model_Order_Address $address
  * @return  Mage_Sales_Model_Quote_Address
  */
 public function importOrderAddress(Mage_Sales_Model_Order_Address $address)
 {
     $this->setAddressType($address->getAddressType())->setCustomerId($address->getCustomerId())->setCustomerAddressId($address->getCustomerAddressId())->setEmail($address->getEmail())->setFirstname($address->getFirstname())->setLastname($address->getLastname())->setCompany($address->getCompany())->setStreet($address->getStreet())->setCity($address->getCity())->setRegion($address->getRegion())->setRegionId($address->getRegionId())->setPostcode($address->getPostcode())->setCountryId($address->getCountryId())->setTelephone($address->getTelephone())->setFax($address->getFax());
     return $this;
 }
开发者ID:arslbbt,项目名称:mangentovies,代码行数:11,代码来源:Address.php

示例4: addressToQuoteAddress

 /**
  * Convert order address to quote address
  *
  * @param   Mage_Sales_Model_Order_Address $address
  * @return  Mage_Sales_Model_Quote_Address
  */
 public function addressToQuoteAddress(Mage_Sales_Model_Order_Address $address)
 {
     $quoteAddress = Mage::getModel('sales/quote_address')->setStoreId($address->getStoreId())->setAddressType($address->getAddressType())->setCustomerId($address->getCustomerId())->setCustomerAddressId($address->getCustomerAddressId())->setFirstname($address->getFirstname())->setLastname($address->getLastname())->setCompany($address->getCompany())->setStreet($address->getStreet(-1))->setCity($address->getCity())->setRegion($address->getRegion())->setRegionId($address->getRegionId())->setPostcode($address->getPostcode())->setCountryId($address->getCountryId())->setTelephone($address->getTelephone())->setFax($address->getFax());
     return $quoteAddress;
 }
开发者ID:arslbbt,项目名称:mangentovies,代码行数:11,代码来源:Order.php

示例5: createAddress

 /**
  * Create OCL Address record
  *
  * @param Mage_Customer_Model_Address_Abstract|Mage_Sales_Model_Order_Address $address
  * @param string|null                          $billingEntityId
  * @return array
  */
 public function createAddress($address, $tags = null)
 {
     $region = $address->getRegion();
     $data = array('street1' => (string) $address->getStreet1(), 'street2' => (string) $address->getStreet2(), 'street3' => (string) $address->getStreet3(), 'street4' => (string) $address->getStreet4(), 'city' => (string) $address->getCity(), 'county' => null, 'stateOrProvince' => empty($region) ? null : $region, 'postalCode' => (string) $address->getPostcode(), 'country' => (string) Mage::getModel('directory/country')->loadByCode($address->getCountryId())->getIso3Code(), 'tags' => $tags);
     return $data;
 }
开发者ID:ridhoq,项目名称:mxpi-twitter,代码行数:13,代码来源:Data.php


注:本文中的Mage_Sales_Model_Order_Address::getCountryId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。