如何在没有API创建订单的情况下将产品添加到购物车客户Magento?
答案 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行。