Add a custom option to a quote item (product in the cart)?
问题 I'm running Magento 1.7. I'm trying to add a quote item option, a custom one, in sales_flat_quote_item_option. I have tried with addOption and addCustomOption functions, but it seems no query is launched to the database. This is my code right now (in a custom module helper) : public function assignDocumentToQuoteItem(Mage_Sales_Model_Quote_Item $quoteItem, $documentid) { if (is_numeric($documentid) && $documentid > 0) { /** @var Mage_Catalog_Model_Product */ $product = $quoteItem->getProduct(