我正在使用magento
网站为Android应用制作API。所以我使用的是Magento API
。在我的结帐过程中,我想显示订单审核。在订单审查中,我想显示产品名称,价格,数量,小计,运费,总计。那我怎样才能获得全部信息?如果解决方案将在Magento API
中,那将会很棒。
答案 0 :(得分:2)
使用soap api在magento中使用以下代码进行审核订单:
$client = new SoapClient("http://example.com/api/soap/?wsdl");
$session = $client->login('username', 'password'); //set session
$cartInfo=array();
$quoteId = $client->call($session, 'cart.create', array('default'));// for create cart
$cartInfo['info'] = $client->call($session, 'cart.info', $quoteId); // for get all cart information
$cartInfo['total'] = $client->call($session, "cart.totals", array($quoteId)); get cart total and shipping charges
print_r($cartInfo);