|
@@ -74,10 +74,8 @@ public class WechatNoListServiceImpl extends ServiceImpl<WechatNoListMapper, Wec
|
|
|
StringBuffer buf = new StringBuffer();
|
|
|
//批量获取审批单号 URL
|
|
|
buf.append(QYWxConstant.APP_ROVAL_INFO).append("?access_token=").append(getToken());
|
|
|
- System.err.println(buf.toString());
|
|
|
String resultStr = HttpUtils.httpPostRequestTest(buf.toString(), params.toJSONString(), null);
|
|
|
JSONObject resultJson = JSONObject.parseObject(resultStr);
|
|
|
- System.err.println(resultJson);
|
|
|
Integer errcode = resultJson.getInteger("errcode");
|
|
|
if (errcode == 0) {
|
|
|
return resultJson;
|
|
@@ -141,9 +139,6 @@ public class WechatNoListServiceImpl extends ServiceImpl<WechatNoListMapper, Wec
|
|
|
JSONObject applyer = info.getJSONObject("applyer");
|
|
|
if (!Check.isNull(applyer)) {
|
|
|
userId = applyer.getString("userid");
|
|
|
- if ("LiuJing".equals(userId)) {
|
|
|
- System.out.println(info);
|
|
|
- }
|
|
|
}
|
|
|
//审批申请数据
|
|
|
JSONObject applyData = info.getJSONObject("apply_data");
|