Commit e9bf62e7 by jinxin

suitid替换

parent 6ca19727
...@@ -370,7 +370,7 @@ public class AppOrderApiServiceImpl implements AppOrderApiService { ...@@ -370,7 +370,7 @@ public class AppOrderApiServiceImpl implements AppOrderApiService {
return ServiceResponse.success(true); return ServiceResponse.success(true);
} }
//不存在的需要根据订单id获取订单详情,并保存进数据库 //不存在的需要根据订单id获取订单详情,并保存进数据库
String suiteid = config.getBuySuiteId(); String suiteid = config.getWxSuiteid();
logger.info("获取的wxSuiteid:{}",suiteid); logger.info("获取的wxSuiteid:{}",suiteid);
JSONObject json = new JSONObject(); JSONObject json = new JSONObject();
json.put("orderid", orderId); json.put("orderid", orderId);
...@@ -423,7 +423,7 @@ public class AppOrderApiServiceImpl implements AppOrderApiService { ...@@ -423,7 +423,7 @@ public class AppOrderApiServiceImpl implements AppOrderApiService {
return ServiceResponse.failure("-9999","参数不能为空"); return ServiceResponse.failure("-9999","参数不能为空");
} }
logger.info("定时获取好办付费应用订单列表参数:{}",param); logger.info("定时获取好办付费应用订单列表参数:{}",param);
String suiteid = config.getBuySuiteId(); String suiteid = config.getWxSuiteid();
ServiceResponse<AppOrderResponseListDTO> response = qywxOrderApiService.getAppOrderInfoList(suiteid, null, param); ServiceResponse<AppOrderResponseListDTO> response = qywxOrderApiService.getAppOrderInfoList(suiteid, null, param);
if (response.isSuccess()){ if (response.isSuccess()){
AppOrderResponseListDTO result = response.getResult(); AppOrderResponseListDTO result = response.getResult();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment