Jak uzyskać adres wysyłki programowo w handlu drupal - jakiego opakowania powinienem użyć?

12

Muszę uzyskać adres wysyłki (a dokładniej kraj wysyłki) programowo w handlu drupal. Mam $orderprzedmiot. Jak mogę uzyskać adres wysyłki?

EDYCJA - Ok, zrobiłem to

 $order_wrapper = entity_metadata_wrapper('commerce_order', $order);
 $shipping =  $order_wrapper->commerce_customer_shipping->value();

Teraz muszę to zakończyć, ale nie znam typu

$shipping_wrapper = entity_metadata_wrapper(?, $order);

Co powinienem umieścić zamiast znaku zapytania?

Nicola Peluchetti
źródło

Odpowiedzi:

7

Ok, zrobiłem to w ten sposób

function commerce_shipping_biagetti_service_rate_order($shipping_service, $order) {
  $order_wrapper = entity_metadata_wrapper('commerce_order', $order);
  $shipping = $order_wrapper->commerce_customer_shipping->commerce_customer_address->value();
  //$shipping is an array containing all shipping data
Nicola Peluchetti
źródło
1
Czy udało Ci się uzyskać obiekt $ order w niestandardowym module? jeśli tak, możesz mi powiedzieć jak?
Ashkar A.Rahman
1

możesz użyć commerce_customer_profile_load($profile_id), identyfikator profilu można pobrać ze $order->commerce_customer_shippingzmiennej, ponieważ masz obiekt zamówienia.

Victor Lazov
źródło
1

Istnieją 2 sposoby na znalezienie adresu wysyłki klienta / użytkownika

function get_user_shipping_address(){

global $user; 
$default_pid =commerce_addressbook_get_default_profile_id($user->uid,'shipping');

Po uzyskaniu identyfikatora profilu możesz załadować profil oraz uzyskać nazwę i adres klienta

$profile_load = commerce_customer_profile_load($default_pid);
$first_line = $profile_load->commerce_customer_address['und'][0]['name_line'];
$landmark = $profile_load->commerce_customer_address['und'][0]['sub_premise'];
$postal_code = $profile_load->commerce_customer_address['und'][0]['postal_code'];
$state = $profile_load->commerce_customer_address['und'][0]['locality'];
$add[] = $first_line . ' ' . $landmark . ' ' . $postal_code . ' ' . $state;
return $add;
}

drugi sposób, jeśli masz $ order

function get_default_address_of_customer_by_order_id($order) {
  $order1 = commerce_order_load($order);
  $shipping_id = $order1->commerce_customer_shipping['und'][0]['profile_id'];
  $address = commerce_customer_profile_load($shipping_id);
  $first_line = $address->commerce_customer_address['und'][0]['name_line'];
  $landmark = $address->commerce_customer_address['und'][0]['sub_premise'];
  $postal_code = $address->commerce_customer_address['und'][0]['postal_code'];
  $state = $address->commerce_customer_address['und'][0]['locality'];
  $add[] = $first_line . ' ' . $landmark . ' ' . $postal_code . ' ' . $state;
  return $add;
 }
Vikram Singh Shekhawat
źródło