作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用此 API 获取订单列表:salesOrderList (SOAP V2) ,我使用这个代码:
env = new SoapSerializationEnvelope(SoapEnvelope.VER11);
env.dotNet = false;
env.xsd = SoapSerializationEnvelope.XSD;
env.enc = SoapSerializationEnvelope.ENC;
SoapObject request = new SoapObject(NAMESPACE,
"salesOrderList");
request.addProperty("sessionId", sessionId);
//request.addProperty("customerId", id.toString());
env.setOutputSoapObject(request);
androidHttpTransport = new HttpTransportSE(URL);
androidHttpTransport.debug = true;
androidHttpTransport.call("", env);
result = env.getResponse();
Log.d("order result", result.toString());
结果:
increment_id=100000001;
store_id=1;
created_at=2013-12-12 07:36:52;
updated_at=2013-12-12 07:36:57;
tax_amount=0.0000;
shipping_amount=0.0000;
discount_amount=0.0000;
subtotal=246.0000;
grand_total=246.0000;
total_qty_ordered=2.0000;
base_tax_amount=0.0000;
base_shipping_amount=0.0000;
base_discount_amount=0.0000;
base_subtotal=246.0000;
base_grand_total=246.0000;
billing_address_id=1;
billing_firstname=?????;
billing_lastname=????;
billing_name=????? ????;
store_to_base_rate=1.0000;
store_to_order_rate=1.0000;
base_to_global_rate=1.0000;
base_to_order_rate=1.0000;
weight=0.0000;
store_name=Main Website
我有一个大问题!结果中没有“customer_id”!如何获取带有订单客户 ID 的订单列表?
最佳答案
当我使用 php 访问销售订单时,如下方式
<?php
$client = new SoapClient('http://localhost/magento/index.php/api/v2_soap/index?wsdl=1');
$session = $client->login('testuser','testuser');
$result = $client->salesOrderList($session);
echo "<pre>";
print_r($result);
echo "<pre>";
?>
您将获得以下信息,使用此信息您可以获取客户 ID。
Array
(
[0] => stdClass Object
(
[increment_id] => 100000001
[store_id] => 1
[created_at] => 2013-11-13 18:39:27
[updated_at] => 2013-11-13 18:39:31
[customer_id] => 1
-----
-----
[customer_email] => xyz@example.com
关于java - 玛根托 : get customer_id from salesOrderList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23169873/
[上下文:java 8,spring boot 1.5.1] 我们正在创建一个 RESTful 服务,我们需要能够上传大文件。我想要的是一个看起来像这样的 api @RequestLine("POST
我是一名优秀的程序员,十分优秀!