如何在没有magento API创建订单的情况下将产品添加到购物车客户?

时间:2015-10-25 10:46:29

标签: api magento cart

如何在没有API创建订单的情况下将产品添加到购物车客户Magento?

我使用此代码段代码:https://gist.github.com/roberto-butti/3509401

1 个答案:

答案 0 :(得分:1)

只是摆脱这部分,正如你在评论中看到它创建一个订单:

// create order
echo "\nI will create the order: ";
$resultOrderCreation = $proxy->call($sessionId,"cart.order",array($shoppingCartId, null, $licenseForOrderCreation));
echo "\nOrder created with code:".$resultOrderCreation."\n";

因此,要从头开始将产品添加到购物车,请使用提供的代码段中的第1-83行。