繁体   English   中英

从愿望清单中添加产品以在magento中引用

[英]Add product from wishlist to quote in magento

我的愿望清单有问题

我需要将产品从愿望清单移至询价单

$url = Mage::getUrl('qquoteadv/index/addItem/');
$actionQuote = "addQuote('".$url."');"

我尝试了上面的代码,但无法正常工作

对这个查询有什么建议吗?

我不认识Magento,但我认为addQuote是函数,因此应该

$actionQuote = addQuote($url);

qquoteadv是Magento Cart2Quote扩展名,因此,如果您未安装url,则该URL将不起作用。

另外,您的网址缺少产品ID: qquoteadv/index/addItem/应该为qquoteadv/index/addItem/product/123/ 而且它只添加一种产品。

您可以使用ajax多次调用此网址,然后该网址应为qquoteadv/index/addItemAjax/product/123/ ,这样您就可以将整个愿望清单添加到报价中。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM