md.fc.storageorder.getbackorderfinishtime (v1)

获取已完成的退货排单列表

请求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);

参数:

参数名必选类型说明
begintimestring开始时间
endtimestring结束时间
pageindexstring页码
pagesizestring每页数据

返回示例

{
	"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_codestring错误编码
return_msgstring错误描述
return_datastring返回数据

data返回参数说明

参数名类型说明
storageordernostring订单号
fcdealernostring经销商编号
fcdealernamestring经销商名称
totalproductcountstring订单总数量
addtimeint添加时间
warehousenameint仓库名称
warehousenostring仓库编号
finishtimestring订单完成时间

productlist

array产品列表

productlist返回参数说明

参数名类型说明
productnostring产品编号
productcountint退货排单数量
storagecountint排单实际退货数量



API工具

SDK下载 调试工具