Magento产品属性未在结帐时显示,显示在购物车中

时间:2016-02-29 20:21:41

标签: php magento magento-1.9

这里有几个主题解释如何在购物车或结帐中获取产品属性。但是,我无法让它发挥作用。

购物车中,我可以看到产品属性,但不能在结帐中看到。

根据我的阅读,结帐不知道产品,所以我需要加载它。这可以解释为什么我没有看到它。

我已经尝试了很多东西,但我要么没有让我的装运步骤加载到购物车中,要么就是没有显示。

任何帮助都会很棒!这是我在自定义送货模块中的代码。

$cart = Mage::getSingleton('checkout/session');

//Order value by category
$gold = 0;

foreach ($cart->getQuote()->getAllItems() as $item) {

    $itemPrice = $item->getPrice();
    $qty = $item->getQty();
    $metalType = Mage::getModel('catalog/product')->load($item->getProduct()->getId())->getAttributeText('metal');

    if ($metalType == "Gold") {
        //Apply some business logic
        $gold = $itemPrice * $qty;
    }
}

Magento get cart single item price incl. tax

Magento Product Attribute Get Value

1 个答案:

答案 0 :(得分:1)

afterLoad对象的Mage_Sales_Model_Resource_Quote_Item_Collection中,为每个报价项调用_assignProducts方法。此方法使用以下代码加载产品集合:

$productCollection = Mage::getModel('catalog/product')->getCollection()
    ->setStoreId($this->getStoreId())
    ->addIdFilter($this->_productIds)
    ->addAttributeToSelect(Mage::getSingleton('sales/quote_config')->getProductAttributes())
    ->addOptionsToResult()
    ->addStoreFilter()
    ->addUrlRewrite()
    ->addTierPriceData();

如果您通过以下方式将product属性添加到新模块的config.xml中,则应将其添加为要在产品集合中选择的属性。

<sales>
    <quote>
        <item>
            <product_attributes>
                  <metal/>
            </product_attributes>
        </item>
    </quote>
</sales>