8

我需要配置产品价格范围,例如

下图是我的要求

对于产品名称:$140 - 310 我使用以下代码

if(Mage::getSingleton('customer/session')->isLoggedIn())
{
        // Get group Id
        $groupId = Mage::getSingleton('customer/session')->getCustomerGroupId();
}
else
{
        $groupId = 0;
}     
$db = Mage::getSingleton('core/resource')->getConnection('core_write');
$result = $db->query('SELECT price ,final_price, min_price, max_price, tier_price, group_price FROM catalog_product_index_price WHERE entity_id='.$_product->getId().' AND customer_group_id ='.$groupId.' ORDER BY customer_group_id ASC LIMIT 1');
$rows = $result->fetch();

我还需要配置产品的常规价格范围。我也认为我在产品名称之后的范围是错误的,因为我Your Price have a price $135怎样才能获得最低价值和最高特价以及正常价格?

我怎么能得到那个?

谢谢并恭祝安康

4

4 回答 4

4

这个对 Magento StackExchange 上类似问题的回答是一个很好的工作基础。使用它,这里有一个解决这个问题的方法,它考虑了具有多个价格变化属性的可配置产品的潜力。

我把它写成一个函数,它接受一个可配置的产品 ID,并返回一个从最低到最高价格的字符串。应该很清楚如何将其应用于您需要的上下文中。

function getPriceRange($productId) {

 $max = '';
 $min = '';

 $pricesByAttributeValues = array();

 $product = Mage::getModel('catalog/product')->load($productId); 
 $attributes = $product->getTypeInstance(true)->getConfigurableAttributes($product);
 $basePrice = $product->getFinalPrice();

 foreach ($attributes as $attribute){
    $prices = $attribute->getPrices();
    foreach ($prices as $price){
        if ($price['is_percent']){ //if the price is specified in percents
            $pricesByAttributeValues[$price['value_index']] = (float)$price['pricing_value'] * $basePrice / 100;
        }
        else { //if the price is absolute value
            $pricesByAttributeValues[$price['value_index']] = (float)$price['pricing_value'];
        }
    }
 }


 $simple = $product->getTypeInstance()->getUsedProducts();

 foreach ($simple as $sProduct){
    $totalPrice = $basePrice;

    foreach ($attributes as $attribute){

        $value = $sProduct->getData($attribute->getProductAttribute()->getAttributeCode());
        if (isset($pricesByAttributeValues[$value])){
            $totalPrice += $pricesByAttributeValues[$value];
        }
    }
    if(!$max || $totalPrice > $max)
        $max = $totalPrice;
    if(!$min || $totalPrice < $min)
        $min = $totalPrice;
 }

 return "$min - $max";

}
于 2014-03-02T20:46:52.143 回答
2

你可以尝试先获取该可配置产品的所有子产品,然后获取每个子产品的价格,然后比较它们,找到最高和最低的。

//load configurable product    
$product = Mage::getModel('catalog/product')->load(some_id);  
//load all children
$childProducts = Mage::getModel('catalog/product_type_configurable')
                    ->getUsedProducts(null,$product);   
foreach($childProducts as $child){
    $_child = Mage::getModel('catalog/product')->load($child->getId());
    $childPrice =  $_child->getPrice();
    //compare the $childPrice
}
于 2013-04-02T11:00:54.010 回答
2

你可以使用这样的东西

$prices = array();
$associated = $_product->getTypeInstance(true)->getAssociatedProductCollection($_product)
->addAttributeToSelect('special_price');

foreach ($associated as $assoc) {
    $prices[] = $assoc->getSpecialPrice();
}
// calculate min max price here
if (count($prices)) {
    $min_price = min($prices);
    $max_price = max($prices);
} else {
    $min_price = 0;
    $max_price = 0;
}

也许不是完美的解决方案,但它有效

于 2013-04-02T08:45:09.893 回答
1

尝试使用$product->getMinPrice()and$product->getMaxPrice()

看看 app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php

于 2015-12-20T16:49:27.943 回答