获取已完成的退货排单列表
请求URL:
https://openapi.weixin12315.com/api/sign/md.fc.storageorder/v1/getbackorderfinishtime
请求方式:
GET
请求示例:
IAuth auth = new Sign("app_id", "app_secret"); IClient client = new SignClient(auth); IDictionary<string, object> parameters = new Dictionary<string, object>(); parameters.Add("begintime", "2018-12-01"); parameters.Add("endtime", "2019-01-01"); parameters.Add("pageindex", 1); parameters.Add("pagesize", 20); var result = client.Call("https://openapi.weixin12315.com","md.fc.storageorder.getbackorderfinishtime", "v1", "GET", parameters);
参数:
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
begintime | 是 | string | 开始时间 |
endtime | 是 | string | 结束时间 |
pageindex | 是 | string | 页码 |
pagesize | 是 | string | 每页数据 |
返回示例
{ "return_code": "0", "return_msg": "请求成功", "return_data": { "recordcount": 1, "datalist": [{ "storageorderno": "TH201812201825502705", "fcdealerno": "zxq-010", "fcdealername": "邹雪芹", "totalproductcount": "1", "addtime": "2018/12/20 18:26:10", "warehousename": "邹雪芹的粮仓", "warehouseno": "zxq10", "finishtime": "2018/12/20 18:34:04" "productlist": [{ "productno":"", "productcount":1, "storagecount":1 }] }] } }
返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
return_code | string | 错误编码 |
return_msg | string | 错误描述 |
return_data | string | 返回数据 |
data返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
storageorderno | string | 订单号 |
fcdealerno | string | 经销商编号 |
fcdealername | string | 经销商名称 |
totalproductcount | string | 订单总数量 |
addtime | int | 添加时间 |
warehousename | int | 仓库名称 |
warehouseno | string | 仓库编号 |
finishtime | string | 订单完成时间 |
productlist | array | 产品列表 |
productlist返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
productno | string | 产品编号 |
productcount | int | 退货排单数量 |
storagecount | int | 排单实际退货数量 |