例如,当添加到购物车中时,我不知道如何将捆绑产品分解为简单商品,以便模拟物在那里显示。
这是草图-我想获取父母的身份证以将其取消。
公共函数execute(观察者$ observer)
{
$cart = $observer->getEvent()->getCart();
$items = $cart->getQuote()->getItems();
foreach ($items as $item) {
$id = $item->getProductId();
}
$parentByChild = $this->_productTypeBundle->getParentIdsByChild($id);
if (isset($parentByChild[0])) {
$parent_id = $parentByChild[0];
}
return $parent_id;
}