2012-04-23 81 views

回答

0

像這樣的東西可以工作

public function getWishListTotal($customer) { 
$wishList = Mage::getSingleton('wishlist/wishlist')->loadByCustomer($customer); 
$wishListItemCollection = $wishList->getItemCollection(); 

$wishListTotal=0; 
foreach ($wishListItemCollection as $_item) { 
    $_product = $_item->getProduct(); 

    $wishListTotal = $wishListTotal + $_product->getPrice() 
} 

return $wishListTotal; 
} 

這是價格總的心願項目,不含稅,運費等