2013-10-08 21 views

回答

0

這是我結束了做。

$order_wrapper = entity_metadata_wrapper('commerce_order', $order); 
$quantityAndPrice = array(); 

foreach ($order_wrapper->commerce_line_items as $line_item_wrapper) 
{ 
    $quantityAndPrice .= round($line_item_wrapper->quantity->value()) .""; 
    $quantityAndPrice .= $line_item_wrapper->commerce_unit_price->amount->value(); 
}