コード例 #1
0
ファイル: Data.php プロジェクト: anattadesign/AwesomeCheckout
 /**
  * Get fullname from address
  * @param Mage_Customer_Model_Address_Abstract $address
  * @return string
  */
 public function getFullname($address)
 {
     $parts = array();
     if ($address->getFirstname()) {
         $parts[] = $address->getFirstname();
     }
     if ($address->getMiddlename()) {
         $parts[] = $address->getMiddlename();
     }
     if ($address->getLastname()) {
         $parts[] = $address->getLastname();
     }
     if (empty($parts)) {
         return trim(Mage::getSingleton('customer/session')->getCustomer()->getName());
     }
     return trim(join(' ', $parts));
 }
コード例 #2
0
ファイル: Request.php プロジェクト: roshu1980/add-computers
 public function extractBillToParameters(Mage_Customer_Model_Address_Abstract $address, $order = null)
 {
     $paramValues = array();
     $paramValues['ECOM_BILLTO_POSTAL_CITY'] = $address->getCity();
     $paramValues['ECOM_BILLTO_POSTAL_COUNTRYCODE'] = $this->getCountry();
     $paramValues['ECOM_BILLTO_POSTAL_NAME_FIRST'] = $address->getFirstname();
     $paramValues['ECOM_BILLTO_POSTAL_NAME_LAST'] = $address->getLastname();
     $paramValues['ECOM_BILLTO_POSTAL_POSTALCODE'] = $address->getPostcode();
     $paramValues['ECOM_BILLTO_POSTAL_STREET_LINE1'] = $address->getStreet(1);
     $paramValues['ECOM_BILLTO_POSTAL_STREET_LINE2'] = $address->getStreet(2);
     return $paramValues;
 }
コード例 #3
0
 /**
  * @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;
 }
コード例 #4
0
 /**
  * @param Mage_Customer_Model_Address_Abstract $address
  * @return Payone_Api_Request_Consumerscore
  */
 public function mapFromAddress(Mage_Customer_Model_Address_Abstract $address)
 {
     $factory = $this->getFactory();
     $request = $factory->getRequestVerificationConsumerScore();
     $helper = $this->helper();
     $configGlobal = $this->getConfigGlobal();
     $config = $this->getConfig();
     $request->setConsumerscoretype($config->getType());
     $request->setAddresschecktype(Payone_Api_Enum_AddressCheckType::NONE);
     $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());
     if ($customerId = $address->getCustomerId()) {
         $customer = $factory->getModelCustomer();
         $customer->load($customerId);
         $date = $customer->getDob();
         $date = date('Ymd', strtotime($date));
         $request->setBirthday($date);
     }
     $request->setEncoding('UTF-8');
     $request->setLanguage($helper->getDefaultLanguage());
     $request->setStreet($address->getStreetFull());
     $request->setTelephonenumber($address->getTelephone());
     $request->setZip($address->getPostcode());
     return $request;
 }
コード例 #5
0
ファイル: Alias.php プロジェクト: roshu1980/add-computers
 /**
  * generates hash from address data
  *
  * @param Mage_Sales_Model_Quote_Address $address the address data to hash
  *
  * @returns sha1 hash of address
  */
 public function generateAddressHash(Mage_Customer_Model_Address_Abstract $address)
 {
     $addressString = $address->getFirstname();
     $addressString .= $address->getMiddlename();
     $addressString .= $address->getLastname();
     $addressString .= $address->getCompany();
     $street = $address->getStreetFull();
     if (is_array($street)) {
         $street = implode('', $street);
     }
     $addressString .= $street;
     $addressString .= $address->getPostcode();
     $addressString .= $address->getCity();
     $addressString .= $address->getCountryId();
     return sha1($addressString);
 }
コード例 #6
0
 /**
  * Transfer person name data from the order address to the person name payload.
  *
  * @param Mage_Customer_Model_Address_Abstract
  * @param IPersonName
  * @return IPersonName
  */
 protected function _transferPersonNameData(Mage_Customer_Model_Address_Abstract $address, IPersonName $personName)
 {
     return $personName->setFirstName($address->getFirstname())->setLastName($address->getLastname())->setMiddleName($address->getMiddlename())->setHonorificName($address->getPrefix());
 }
コード例 #7
0
 /**
  * Copy over address name data from the source to the dest address.
  * @param Mage_Customer_Model_Address_Abstract $dest
  * @param Mage_Customer_Model_Address_Abstract $source
  * @return self
  */
 protected function _copyAddressName(Mage_Customer_Model_Address_Abstract $dest, Mage_Customer_Model_Address_Abstract $source)
 {
     $dest->addData(['prefix' => $source->getPrefix(), 'firstname' => $source->getFirstname(), 'middlename' => $source->getMiddlename(), 'lastname' => $source->getLastname(), 'suffix' => $source->getSuffix()]);
     return $this;
 }
コード例 #8
0
 /**
  * @param Mage_Customer_Model_Address_Abstract $address
  * @return array
  */
 protected function _getAddressData(Mage_Customer_Model_Address_Abstract $address)
 {
     $data = array();
     if ($address) {
         $data['firstName'] = $address->getFirstname();
         $data['lastName'] = $address->getLastname();
         $data['address'] = $address->getStreetFull();
         $data['city'] = $address->getCity();
         $data['postalCode'] = $address->getPostcode();
         $data['country'] = $address->getCountry();
         $data['stateProvince'] = $address->getRegion() ? $address->getRegion() : '';
     }
     return $data;
 }
コード例 #9
0
 /**
  * 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;
 }