2012-04-23 4 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; 
} 

일할 수

관련 문제