我正在尝试在另一个捆绑产品中添加捆绑产品。达到我的地位很简单。像这样编辑文件/app/code/Mage/Bundle/etc/config.xml
:
...
<allowed_selection_types>
<simple/>
<bundle/> <!-- Add this at line 104-->
<virtual/>
</allowed_selection_types>
...
通过这样做,您将能够成功创建一个捆绑产品,其中包含另一个捆绑产品!
我的问题是我无法通过 AdminPanel 或 SOAP 将此产品添加到订单中(没有尝试通过前端,但可能也不起作用)。
当我在管理面板中单击“将所选产品添加到订单”时,我收到以下错误:
[19-Jun-2013 15:52:48 UTC] PHP Fatal error: Call to a member function getPosition() on a non-object in app\code\core\Mage\Bundle\Model\Product\Type.php on line 865
崩溃发生在shakeSelections($a, $b)
:代码$a->getOption()
没有返回对象。它不是 null 也不是对象(我是 PHP 新手,所以对我来说没有意义)。
==更新==
现在我可以将这种新产品添加到购物车中了!我已经编辑了文件 app\code\core\Mage\Bundle\Model\Product\Type.php,所以现在我有了以下代码:
...
/*
* Create extra attributes that will be converted to product options in order item
* for selection (not for all bundle)
*/
$price = $product->getPriceModel()->getSelectionFinalTotalPrice($product, $selection, 0, $qty);
$attributes = array(
'price' => Mage::app()->getStore()->convertPrice($price),
'qty' => $qty,
'option_label' => is_null($selection->getOption()) ? '' : $selection->getOption()->getTitle(),
'option_id' => is_null($selection->getOption()) ? 0 : $selection->getOption()->getId()
);
$type = $selection->getTypeInstance(true);
if (get_class($type) != 'Mage_Bundle_Model_Product_Type'){
$_result = $selection->getTypeInstance(true)->prepareForCart($buyRequest, $selection);
}
...
以及以下功能:
public function shakeSelections($a, $b)
{
$ta = $a->getOption();
$tb = $b->getOption();
$aPosition = array(
is_null($ta) ? 0 : $ta->getPosition(),
$a->getOptionId(),
$a->getPosition(),
$a->getSelectionId()
);
$bPosition = array(
is_null($tb) ? 0 : $tb->getPosition(),
$b->getOptionId(),
$b->getPosition(),
$b->getSelectionId()
);
if ($aPosition == $bPosition) {
return 0;
} else {
return $aPosition < $bPosition ? -1 : 1;
}
}
我正在调查以发现我引入的可能的副作用。此刻我看到这捆捆绑产品的库存管理存在问题。
如果您走得更远,请发布您的更新。非常感谢!
== 第二次编辑 ==
我已经在 github 开始了这个 repo,这样你就可以关注我的进展,也许可以帮助我。