本文整理汇总了PHP中Mage_Sales_Model_Order_Address::getId方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Sales_Model_Order_Address::getId方法的具体用法?PHP Mage_Sales_Model_Order_Address::getId怎么用?PHP Mage_Sales_Model_Order_Address::getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Sales_Model_Order_Address
的用法示例。
在下文中一共展示了Mage_Sales_Model_Order_Address::getId方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: initAddress
/**
* Set correct values on subscription address based on given subscription and order address
*
* @param Adyen_Subscription_Model_Subscription $subscription
* @param Mage_Sales_Model_Order_Address|Mage_Sales_Model_Quote_Address $address
* @return $this
*/
public function initAddress(Adyen_Subscription_Model_Subscription $subscription, $address)
{
$this->setSubscriptionId($subscription->getId());
// Reset (possible) original values
$this->setOrderAddressId(null)->setCustomerAddressId(null)->setQuoteAddressId(null);
if ($address->getAddressType() == Mage_Sales_Model_Order_Address::TYPE_BILLING) {
$this->setType(self::ADDRESS_TYPE_BILLING);
} else {
$this->setType(self::ADDRESS_TYPE_SHIPPING);
}
// Note: Only use customer address if 'save_in_address_book' or 'same_as_billing'
// is also checked at the address, because it's not enough to rely solely on the
// customer address ID, because an address can be changed when creating an order
// in the backend, but this ID still remains when a quote is converted to an order
if ($address->getCustomerAddressId() && $address->getData('save_in_address_book')) {
// Create customer address
$this->setSource(self::ADDRESS_SOURCE_CUSTOMER)->setCustomerAddressId($address->getCustomerAddressId());
} elseif ($address instanceof Mage_Sales_Model_Quote_Address) {
// Create quote address
$this->setSource(self::ADDRESS_SOURCE_QUOTE)->setQuoteAddressId($address->getId());
} else {
// Create order address
$this->setSource(self::ADDRESS_SOURCE_ORDER)->setOrderAddressId($address->getId());
}
return $this;
}
示例2: initAddress
/**
* Set correct values on subscription address based on given subscription and order address
*
* @param Adyen_Subscription_Model_Subscription $subscription
* @param Mage_Sales_Model_Order_Address|Mage_Sales_Model_Quote_Address $address
* @return $this
*/
public function initAddress(Adyen_Subscription_Model_Subscription $subscription, $address)
{
$this->setSubscriptionId($subscription->getId());
// Reset (possible) original values
$this->setOrderAddressId(null)->setCustomerAddressId(null)->setQuoteAddressId(null);
if ($address->getAddressType() == Mage_Sales_Model_Order_Address::TYPE_BILLING) {
$this->setType(self::ADDRESS_TYPE_BILLING);
} else {
$this->setType(self::ADDRESS_TYPE_SHIPPING);
}
if ($address instanceof Mage_Sales_Model_Quote_Address) {
// Create quote address
$this->setSource(self::ADDRESS_SOURCE_QUOTE)->setQuoteAddressId($address->getId());
} else {
// Create order address
$this->setSource(self::ADDRESS_SOURCE_ORDER)->setOrderAddressId($address->getId());
}
return $this;
}
示例3: testAddressActionNoVAT
/**
* @magentoDataFixture Mage/Adminhtml/controllers/Sales/_files/address.php
*/
public function testAddressActionNoVAT()
{
$address = new Mage_Sales_Model_Order_Address();
$address->load('a_unique_firstname', 'firstname');
$this->getRequest()->setParam('address_id', $address->getId());
$this->dispatch('admin/sales_order/address');
$html = $this->getResponse()->getBody();
$prohibitedStrings = array('validate-vat', 'validateVat', 'Validate VAT');
foreach ($prohibitedStrings as $string) {
$this->assertNotContains($string, $html, 'VAT button must not be shown while editing address', true);
}
}
示例4: addAddress
public function addAddress(Mage_Sales_Model_Order_Address $address)
{
$address->setOrder($this)->setParentId($this->getId());
if (!$address->getId()) {
$this->getAddressesCollection()->addItem($address);
}
return $this;
}
示例5: getAddressEditLink
/**
* Get link to edit order address page
*
* @param Mage_Sales_Model_Order_Address $address
* @param string $label
* @return string
*/
public function getAddressEditLink($address, $label = '')
{
if (empty($label)) {
$label = $this->__('Edit');
}
$url = $this->getUrl('*/sales_order/address', array('address_id' => $address->getId()));
return '<a href="' . $url . '">' . $label . '</a>';
}