本文整理汇总了PHP中Mage_Sales_Model_Order_Address::getFirstname方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Sales_Model_Order_Address::getFirstname方法的具体用法?PHP Mage_Sales_Model_Order_Address::getFirstname怎么用?PHP Mage_Sales_Model_Order_Address::getFirstname使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Sales_Model_Order_Address
的用法示例。
在下文中一共展示了Mage_Sales_Model_Order_Address::getFirstname方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _setReceiverCompanyPerson
protected function _setReceiverCompanyPerson(Mage_Sales_Model_Order_Address $address, array &$receiver)
{
$receiver['Company']['Person']['salutation'] = $address->getPrefix();
$receiver['Company']['Person']['title'] = $address->getSuffix();
$receiver['Company']['Person']['firstname'] = $address->getFirstname();
$receiver['Company']['Person']['middlename'] = $address->getMiddlename();
$receiver['Company']['Person']['lastname'] = $address->getLastname();
unset($receiver['Company']['Company']);
}
示例2: 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;
}
示例3: createFromAddress
public static function createFromAddress(Mage_Sales_Model_Order_Address $address)
{
$aAddress = new self();
$aAddress->first_name = $address->getFirstname();
$aAddress->last_name = $address->getLastname();
$aAddress->street = $address->getStreet(1);
$aAddress->city = $address->getCity();
$aAddress->state = $address->getRegion();
$aAddress->country = $address->getCountryModel()->getIso2Code();
$aAddress->postcode = $address->getPostcode();
$aAddress->phone = $address->getTelephone();
$aAddress->alt_phone = $address->getAltTelephone();
$aAddress->address_addition = $address->getStreet(2);
return $aAddress;
}
示例4: buildAddress
/**
* Build a Magento address model into a Braintree array
*
* @param Mage_Sales_Model_Order_Address|Mage_Sales_Model_Quote_Address|Mage_Customer_Model_Address $address
*
* @return array
*/
private function buildAddress($address)
{
// Build up the initial array
$return = array('firstName' => $address->getFirstname(), 'lastName' => $address->getLastname(), 'streetAddress' => $address->getStreet1(), 'locality' => $address->getCity(), 'postalCode' => $address->getPostcode(), 'countryCodeAlpha2' => $address->getCountry());
// Any extended address?
if ($address->getStreet2()) {
$return['extendedAddress'] = $address->getStreet2();
}
// Region
if ($address->getRegion()) {
$return['region'] = $address->getRegionCode();
}
// Check to see if we have a company
if ($address->getCompany()) {
$return['company'] = $address->getCompany();
}
return $return;
}
示例5: 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;
}
示例6: _getShopgateAddressFromOrderAddress
/**
* @param Mage_Sales_Model_Order_Address $address
* @return array
*/
protected function _getShopgateAddressFromOrderAddress($address)
{
$shopgateAddress = new ShopgateAddress();
$shopgateAddress->setFirstName($address->getFirstname());
$shopgateAddress->setLastName($address->getLastname());
$shopgateAddress->setGender($this->_getCustomerHelper()->getShopgateCustomerGender($address));
$shopgateAddress->setCompany($address->getCompany());
$shopgateAddress->setPhone($address->getTelephone());
$shopgateAddress->setStreet1($address->getStreet1());
$shopgateAddress->setStreet2($address->getStreet2());
$shopgateAddress->setCity($address->getCity());
$shopgateAddress->setZipcode($address->getPostcode());
$shopgateAddress->setCountry($address->getCountry());
$shopgateAddress->setState($this->_getHelper()->getIsoStateByMagentoRegion($address));
return $shopgateAddress->toArray();
}
示例7: 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;
}
示例8: _getAddress
/**
* @param Mage_Sales_Model_Order_Address $source
* @param string $type
*
* @return WirecardCEE_Stdlib_ConsumerData_Address
*/
protected function _getAddress($source, $type = 'billing')
{
switch ($type) {
case 'shipping':
$address = new WirecardCEE_Stdlib_ConsumerData_Address(WirecardCEE_Stdlib_ConsumerData_Address::TYPE_SHIPPING);
break;
default:
$address = new WirecardCEE_Stdlib_ConsumerData_Address(WirecardCEE_Stdlib_ConsumerData_Address::TYPE_BILLING);
break;
}
$address->setFirstname($source->getFirstname());
$address->setLastname($source->getLastname());
$address->setAddress1($source->getStreet1());
$address->setAddress2($source->getStreet2());
$address->setZipCode($source->getPostcode());
$address->setCity($source->getCity());
$address->setCountry($source->getCountry());
$address->setState($source->getRegionCode());
$address->setPhone($source->getTelephone());
$address->setFax($source->getFax());
return $address;
}
示例9: createName
/**
* Create OCL Name record
*
* @param Mage_Sales_Model_Order_Address|Mage_Customer_Model_Customer $address
* @return array
*/
public function createName($address)
{
$data = array('firstName' => (string) $address->getFirstname(), 'middleName' => $address->getMiddlename(), 'lastName' => (string) $address->getLastname(), 'prefix' => $address->getPrefix(), 'suffix' => $address->getSuffix());
return $data;
}