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


PHP Mage_Sales_Model_Quote_Address::importCustomerAddress方法代码示例

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


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

示例1: _importCustomerAddressTo

 protected function _importCustomerAddressTo(Mage_Sales_Model_Quote_Address $address)
 {
     $customerAddress = $this->getCustomer()->getPrimaryShippingAddress();
     if ($customerAddress) {
         $address->importCustomerAddress($customerAddress)->setSaveInAddressBook(0);
     }
 }
开发者ID:xiaoguizhidao,项目名称:autotech_design,代码行数:7,代码来源:Info.php

示例2: updateResource

 /**
  * Update the resource model
  *
  * @param Mage_Sales_Model_Quote_Address $resource
  * @param array                          $data
  *
  * @return Mage_Sales_Model_Quote_Address
  */
 public function updateResource(Mage_Sales_Model_Quote_Address $resource, array $data)
 {
     // Store current state
     $actionType = $this->getActionType();
     $operation = $this->getOperation();
     // Change state
     $this->setActionType(self::ACTION_TYPE_ENTITY);
     $this->setOperation(self::OPERATION_UPDATE);
     // Get a filter instance
     $filter = $this->getFilter();
     // Filter raw incoming data
     $data = $filter->in($data);
     // Check if the update is setting a customer address ID to use
     if (array_key_exists('customer_address_id', $data) && $data['customer_address_id']) {
         /** @var Mage_Customer_Model_Address $customerAddress */
         $customerAddress = Mage::getModel('customer/address')->load($data['customer_address_id']);
         if ($customerAddress->getId()) {
             if ($customerAddress->getCustomerId() != $resource->getQuote()->getCustomerId()) {
                 $this->_critical(Mage::helper('checkout')->__('Customer Address is not valid.'), Mage_Api2_Model_Server::HTTP_BAD_REQUEST);
             }
             $resource->importCustomerAddress($customerAddress);
             $resource->setSaveInAddressBook(0);
         }
     } else {
         // Fix region/country data
         $data = $this->getHelper()->fixAddressData($data, $resource->getCountryId(), $resource->getRegionId());
         // Get allowed attributes
         $allowedAttributes = $filter->getAllowedAttributes(Mage_Api2_Model_Resource::OPERATION_ATTRIBUTE_WRITE);
         // Update model
         $this->saveResourceAttributes($resource, array_merge($allowedAttributes, ['region_id']), $data);
     }
     // Update the shipping address if it is meant to match the billing address
     if ($resource->getQuote()->getShippingAddress()->getSameAsBilling()) {
         $shippingAddress = $resource->getQuote()->getShippingAddress();
         $shippingAddress->importCustomerAddress($resource->exportCustomerAddress());
         $shippingAddress->setSameAsBilling(1);
     }
     // Validate address
     $addressErrors = $this->getHelper()->validateQuoteAddress($resource);
     if (!empty($addressErrors)) {
         $resource->setData('validation_errors', $addressErrors);
     }
     // Fire event - after
     $data = new Varien_Object($data);
     Mage::dispatchEvent('aoe_cartapi_billingaddress_update_after', ['data' => $data, 'filter' => $filter, 'resource' => $resource]);
     // Restore old state
     $this->setActionType($actionType);
     $this->setOperation($operation);
     // Return updated resource
     return $resource;
 }
开发者ID:aoepeople,项目名称:aoe_cartapi,代码行数:59,代码来源:BillingAddress.php

示例3: setQuoteAddresses

 protected function setQuoteAddresses()
 {
     $defaultAddress = $this->getDefaultAddress();
     $billingAddress = new Mage_Sales_Model_Quote_Address();
     $billingAddress->importCustomerAddress($defaultAddress);
     $this->quote->setBillingAddress($billingAddress);
     $shippingAddress = new Mage_Sales_Model_Quote_Address();
     $shippingAddress->importCustomerAddress($defaultAddress);
     $this->quote->setShippingAddress($shippingAddress);
     return $this;
 }
开发者ID:sweettooth-legacy,项目名称:magentodemo-addons,代码行数:11,代码来源:dummyOrder.php

示例4: setupShippingAddress

 protected function setupShippingAddress()
 {
     $address = new \Mage_Sales_Model_Quote_Address();
     $address->importCustomerAddress($this->getCustomerShippingAddress());
     $this->getQuote()->setShippingAddress($address);
     return $this;
 }
开发者ID:kalenjordan,项目名称:magerun-addons,代码行数:7,代码来源:DummyCommand.php


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