예제 #1
0
 /**
  * Get billing address request data
  *
  * @param \Magento\Framework\Object $address
  * @return array
  */
 protected function _getBillingAddress(\Magento\Framework\Object $address)
 {
     $request = array('billing_first_name' => $address->getFirstname(), 'billing_last_name' => $address->getLastname(), 'billing_city' => $address->getCity(), 'billing_state' => $address->getRegionCode() ? $address->getRegionCode() : $address->getCity(), 'billing_zip' => $address->getPostcode(), 'billing_country' => $address->getCountry());
     // convert streets to tow lines format
     $street = $this->_customerAddress->convertStreetLines($address->getStreet(), 2);
     $request['billing_address1'] = isset($street[0]) ? $street[0] : '';
     $request['billing_address2'] = isset($street[1]) ? $street[1] : '';
     return $request;
 }
예제 #2
0
파일: Nvp.php 프로젝트: aiesh/magento2
 /**
  * Adopt specified address object to be compatible with Magento
  *
  * @param \Magento\Framework\Object $address
  * @return void
  */
 protected function _applyStreetAndRegionWorkarounds(\Magento\Framework\Object $address)
 {
     // merge street addresses into 1
     if ($address->hasStreet2()) {
         $address->setStreet(implode("\n", array($address->getStreet(), $address->getStreet2())));
         $address->unsStreet2();
     }
     // attempt to fetch region_id from directory
     if ($address->getCountryId() && $address->getRegion()) {
         $regions = $this->_countryFactory->create()->loadByCode($address->getCountryId())->getRegionCollection()->addRegionCodeOrNameFilter($address->getRegion())->setPageSize(1);
         foreach ($regions as $region) {
             $address->setRegionId($region->getId());
             $address->setExportedKeys(array_merge($address->getExportedKeys(), array('region_id')));
             break;
         }
     }
 }
예제 #3
0
 /**
  * Street address workaround: divides address lines into parts by specified keys
  * (keys should go as 3rd, 4th[...] parameters)
  *
  * @param \Magento\Framework\Object $address
  * @param array $to
  * @return void
  */
 protected function _importStreetFromAddress(\Magento\Framework\Object $address, array &$to)
 {
     $keys = func_get_args();
     array_shift($keys);
     array_shift($keys);
     $street = $address->getStreet();
     if (!$keys || !$street || !is_array($street)) {
         return;
     }
     $street = $this->_customerAddress->convertStreetLines($address->getStreet(), count($keys));
     $i = 0;
     foreach ($keys as $key) {
         $to[$key] = isset($street[$i]) ? $street[$i] : '';
         $i++;
     }
 }
예제 #4
0
 /**
  * @param Object $request
  * @param Object $shipping
  *
  * @return Object
  */
 public function setShipping($request, $shipping)
 {
     $request->setShiptofirstname($shipping->getFirstname())->setShiptolastname($shipping->getLastname())->setShiptostreet(implode(' ', $shipping->getStreet()))->setShiptocity($shipping->getCity())->setShiptostate($shipping->getRegionCode())->setShiptozip($shipping->getPostcode())->setShiptocountry($shipping->getCountryId());
     return $request;
 }