0

我试图弄清楚如何将 Magento 产品详细信息页面中的层级定价格式化为网格/表格格式。例如,我想要一个数量行、价格行和折扣行。它大约有 5 列。这可能吗?我们批量销售产品,所以这种布局很重要。如果有人能指出我正确的方向,那就太好了。我是 magento 的新手,发现事情的定制方面很难掌握。

谢谢!

4

2 回答 2

2

我为我的 tierprices.phtml 制作了以下模板。
仅供参考,我正在运行 Magento 1.8.x

<?php
$_product = $this->getProduct();
$_tierPrices = $this->getTierPrices();
if (count($_tierPrices) > 0):
    $_data = array();
    $_prevQty = 0;
    $_counter = 0;
    $_tierPrices = array_reverse($_tierPrices);
    foreach ($_tierPrices as $_index => $_price){
        $_counter++;
        if($_price['price_qty']>$_prevQty){
            if($_counter == 1){
                $label = $_price['price_qty'] . '+';
            } else {
                $label = $this->__('%d or less',$_price['price_qty']);
            }
            $_data[] = array('prev'=>$_prevQty,'next'=>$_price['price_qty'],'label'=>$label,'price'=>$_price['formated_price']);
            $_prevQty = $_price['price_qty'];
        } else {
            $label = $_price['price_qty'] . '-' . $_prevQty;
            $_data[] = array('prev'=>$_prevQty,'next'=>$_price['price_qty'],'label'=>$label,'price'=>$_price['formated_price']);
            $_prevQty = $_price['price_qty'];
        }
    }
    $_data = array_reverse($_data);
?>
    <table class="tiered-pricing">
        <tbody>
            <tr>
                <th>Quantity</th>
                <th>Price</th>
            </tr>
        <?php foreach ($_data as $_row): ?>
            <tr>
                <td><?php echo $_row['label']; ?></td>
                <td><?php echo $_row['price']; ?></td>
            </tr>
        <?php endforeach; ?>
        </tbody>
    </table>
<?php
endif;
?>

它制作了分层定价数据的表格版本。

于 2014-06-26T11:40:01.493 回答
0

以下 URL 将很有用:

http://stackoverflow.com/questions/9257924/magento-tier-sales-prices

也可以修改以下模板

magento/app/design/frontend/default/your_theme/template/catalog/product/view/tierprices.phtml

您可以在其中循环遍历$_tierPrices数组并生成 html 表格元素

于 2013-06-05T06:49:27.740 回答