Drupal commerceでLine ItemからProductの情報を取得する
Aug 12, 2015AD:
Productの価格を取得したくて、最終的にこのような形で取得することができました。
1 2 3 4 5 6 7 8 9 10 11 |
$order_wrapper = entity_metadata_wrapper('commerce_order', $order); $order_id = $order->order_id; $line_items = $order_wrapper->commerce_line_items; foreach ($line_items as $line_item) { if (!$line_item instanceof EntityMetadataWrapper) { $line_item = entity_metadata_wrapper('commerce_line_item', $line_item); } $product_detail = commerce_product_load_by_sku($line_item->line_item_label->value()); var_dump(product_detail); } |
AD:
No Comments, Comment or Ping
Reply to “Drupal commerceでLine ItemからProductの情報を取得する”
Warning: Undefined variable $user_ID in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/themes/grid_focus_public_mizo/comments.php on line 66
You must be logged in to post a comment.