在multishipping中,我必须允许giftwrapping,当用户选择任何多包装报价的包装时,我必须为该特定报价添加包装产品。我使用了checkout_controller_multishipping_shipping_post
事件并得到了报价。
现在,当我使用$quote->addproduct($wrapperProductObject)
时,它会在db表中添加此产品,但在我进入购物车页面并再次访问之前,不会在订单评论页面上显示。
是否有办法在上述事件后在报价中添加产品,并在订单审核页面上显示。
答案 0 :(得分:0)
我不知道为什么magento有另一个地址项表而不是在quote_items表中有一个字段。无论如何,我的问题的答案是我们还需要更新quote_address_item表。
下面的代码适用于我的问题。
$item = $quote->addProduct($wrapperProductObj, $qty);
$quote->save();
//need to add item in quote_address_items table.
$address->addItem($item);