如何在magento中获取订单审核信息

时间:2014-09-19 06:55:28

标签: php magento

我正在使用magento网站为Android应用制作API。所以我使用的是Magento API。在我的结帐过程中,我想显示订单审核。在订单审查中,我想显示产品名称,价格,数量,小计,运费,总计。那我怎样才能获得全部信息?如果解决方案将在Magento API中,那将会很棒。

1 个答案:

答案 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);