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


PHP Mage_Customer_Model_Address_Abstract::getRegionCode方法代码示例

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


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

示例1: _convertRequestAddress

 /**
  * Sets attributes from the Mage address on the AvaTax Request address.
  *
  * @return $this
  */
 protected function _convertRequestAddress()
 {
     if (!$this->_requestAddress) {
         $this->_requestAddress = new Address();
     }
     $this->_requestAddress->setLine1($this->_mageAddress->getStreet(1));
     $this->_requestAddress->setLine2($this->_mageAddress->getStreet(2));
     $this->_requestAddress->setCity($this->_mageAddress->getCity());
     $this->_requestAddress->setRegion($this->_mageAddress->getRegionCode());
     $this->_requestAddress->setCountry($this->_mageAddress->getCountry());
     $this->_requestAddress->setPostalCode($this->_mageAddress->getPostcode());
     return $this;
 }
开发者ID:sojimaxi,项目名称:avatax,代码行数:18,代码来源:Address.php

示例2: mapFromAddress

 /**
  * @param Mage_Customer_Model_Address_Abstract $address
  *
  * @return Payone_Api_Request_AddressCheck
  */
 public function mapFromAddress(Mage_Customer_Model_Address_Abstract $address)
 {
     $request = $this->getFactory()->getRequestVerificationAddressCheck();
     $helper = $this->helper();
     $configGlobal = $this->getConfigGlobal();
     $config = $this->getConfig();
     // @todo move addressCheckType detection to method
     // @todo add option to configure used Adresschecktype externaly
     if ($address->getAddressType() === 'billing') {
         $request->setAddresschecktype($config->getCheckBilling());
         // check if billing is used for shipping and shipping-address has to be checked
         if ($address->getUseForShipping() === true and $config->mustCheckShipping()) {
             $request->setAddresschecktype($config->getCheckShipping());
         }
     } elseif ($address->getAddressType() === 'shipping') {
         $request->setAddresschecktype($config->getCheckShipping());
     } else {
         throw new Exception('Invalid Address Check Type');
     }
     $request->setAid($configGlobal->getAid());
     $request->setMid($configGlobal->getMid());
     $request->setMode($config->getMode());
     $request->setPortalid($configGlobal->getPortalid());
     $request->setKey($configGlobal->getKey());
     $request->setCity($address->getCity());
     $request->setCompany($address->getCompany());
     $request->setCountry($address->getCountry());
     $request->setFirstname($address->getFirstname());
     $request->setLastname($address->getLastname());
     $request->setIntegratorName('Magento');
     $request->setIntegratorVersion($helper->getMagentoVersion());
     $request->setSolutionName('votum');
     $request->setSolutionVersion($helper->getPayoneVersion());
     $request->setEncoding('UTF-8');
     $request->setLanguage($helper->getDefaultLanguage());
     $request->setStreet($address->getStreetFull());
     $request->setTelephonenumber($address->getTelephone());
     $countryId = $address->getCountryId();
     if ($countryId == "US" || $countryId == "CA") {
         $request->setState($address->getRegionCode());
     }
     $request->setZip($address->getPostcode());
     return $request;
 }
开发者ID:kirchbergerknorr,项目名称:payone-magento,代码行数:49,代码来源:AddressCheck.php

示例3: _transferPhysicalAddressData

 /**
  * Transfer physical address data from the order address to the physical
  * address payload.
  *
  * @param Mage_Customer_Model_Address_Abstract
  * @param IPhysicalAddress
  * @return IPhysicalAddress
  */
 protected function _transferPhysicalAddressData(Mage_Customer_Model_Address_Abstract $address, IPhysicalAddress $physicalAddress)
 {
     return $physicalAddress->setLines($address->getStreet(-1))->setCity($address->getCity())->setMainDivision($address->getRegionCode())->setCountryCode($address->getCountryId())->setPostalCode($address->getPostcode())->setPhone($address->getTelephone());
 }
开发者ID:adderall,项目名称:magento-retail-order-management,代码行数:12,代码来源:Create.php

示例4: _extractAddressData

 /**
  * Extract array of address data - street, city, region code, etc. from an address object
  * @param  Mage_Customer_Model_Address_Abstract $address Address object to pull data from
  * @return array Extracted data
  */
 protected function _extractAddressData(Mage_Customer_Model_Address_Abstract $address)
 {
     return array('street' => $address->getStreet(), 'city' => $address->getCity(), 'region_code' => $address->getRegionCode(), 'country_id' => $address->getCountryId(), 'postcode' => $address->getPostcode());
 }
开发者ID:sirishreddyg,项目名称:magento-retail-order-management,代码行数:9,代码来源:Session.php

示例5: getRegion

 /**
  * If the country for the Address is US then get the 2 character ISO region code;
  * otherwise, for any other country get the fully qualified region name.
  *
  * @param  Mage_Customer_Model_Address_Abstract
  * @return string
  */
 protected function getRegion(Mage_Customer_Model_Address_Abstract $address)
 {
     return $address->getCountry() === 'US' ? $address->getRegionCode() : $address->getRegion();
 }
开发者ID:sirishreddyg,项目名称:magento-retail-order-management,代码行数:11,代码来源:Payload.php

示例6: transferAddressToPhysicalAddressPayload

 /**
  * Transfer data from a Magento address model to a physical address payload.
  *
  * @param Mage_Customer_Model_Address_Abstract
  * @param IPhysicalAddress
  * @return self
  */
 public function transferAddressToPhysicalAddressPayload(Mage_Customer_Model_Address_Abstract $address, IPhysicalAddress $addressPayload)
 {
     $addressPayload->setLines($address->getStreetFull())->setCity($address->getCity())->setMainDivision($address->getRegionCode())->setCountryCode($address->getCountry())->setPostalCode($address->getPostcode());
     return $this;
 }
开发者ID:WinstonN,项目名称:magento-retail-order-management,代码行数:12,代码来源:Data.php

示例7: getAddress

 protected function getAddress(Mage_Customer_Model_Address_Abstract $address)
 {
     $taxAddress = new AvaTax\Address();
     $taxAddress->setLine1($this->limit($address->getStreet1(), 50));
     $taxAddress->setLine2($this->limit($address->getStreet2(), 50));
     $taxAddress->setLine3($this->limit($address->getStreet3(), 50));
     $taxAddress->setCity($this->limit($address->getCity(), 50));
     $taxAddress->setRegion($this->limit($address->getRegionCode(), 3));
     $taxAddress->setCountry($this->limit($address->getCountryId(), 2));
     $taxAddress->setPostalCode($this->limit($address->getPostcode(), 11));
     return $taxAddress;
 }
开发者ID:aoepeople,项目名称:aoe_avatax,代码行数:12,代码来源:SoapApi.php

示例8: getIsoRegionCode

 /**
  * extracts the region code in iso format (if possible)
  *
  * @param Mage_Customer_Model_Address_Abstract $address
  *
  * @return string - the regin code in iso format
  */
 public function getIsoRegionCode(Mage_Customer_Model_Address_Abstract $address)
 {
     $regionCode = trim($address->getRegionCode());
     $countryCode = $address->getCountry();
     if ($this->isAlreadyIsoCode($regionCode, $countryCode)) {
         return $regionCode;
     }
     if (0 === strpos($regionCode, $countryCode . '-')) {
         return str_replace($countryCode . '-', '', $regionCode);
     }
     return $this->getRegionCodeFromMapping($countryCode, $regionCode);
 }
开发者ID:roshu1980,项目名称:add-computers,代码行数:19,代码来源:Request.php

示例9: createAddressHash

 /**
  * Creates a hash from an addresses key data
  *
  * @param Mage_Customer_Model_Address_Abstract $address
  * @return string
  */
 public function createAddressHash(Mage_Customer_Model_Address_Abstract $address)
 {
     $values = $address->getFirstname() . $address->getLastname() . $address->getStreetFull() . $address->getPostcode() . $address->getCity() . $address->getRegionCode() . $address->getCountry();
     $hash = md5($values);
     return $hash;
 }
开发者ID:kirchbergerknorr,项目名称:payone-magento,代码行数:12,代码来源:Data.php

示例10: getAddress

 protected function getAddress($code, Mage_Customer_Model_Address_Abstract $address)
 {
     $data = array('Line1' => $this->limit($address->getStreet1(), 50), 'Line2' => $this->limit($address->getStreet2(), 50), 'Line3' => $this->limit($address->getStreet3(), 50), 'City' => $this->limit($address->getCity(), 50), 'Region' => $this->limit($address->getRegionCode(), 3), 'Country' => $this->limit($address->getCountryId(), 2), 'PostalCode' => $this->limit($address->getPostcode(), 11));
     $data = array_filter($data);
     if ($code && !empty($data)) {
         $data['AddressCode'] = $code;
     }
     return $data;
 }
开发者ID:aoepeople,项目名称:aoe_avatax,代码行数:9,代码来源:RestApi.php


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