From 786deefd0e3c99a2042a024d3b60a02b0effc356 Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期四, 27 六月 2024 10:09:41 +0800 Subject: [PATCH] 花城 修改单位管理员逻辑 --- springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/UserServiceImpl.java | 33 ++++++++++++++++++++------------- 1 files changed, 20 insertions(+), 13 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/UserServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/UserServiceImpl.java index b8d4a9f..e38f693 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/UserServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/UserServiceImpl.java @@ -476,13 +476,16 @@ if(count>0){ loginUserInfoVO.setIsCheckUnitAdmin(1); } + else { + loginUserInfoVO.setIsCheckUnitAdmin(0); + } Long checkUnitId=userDao.selectCheckUnitId(phone); + Long AdminUnitId=userDao.selectOrgAdminId(phone); if(checkUnitId!=null){ loginUserInfoVO.setCheckUnitId(checkUnitId); } - - else { - loginUserInfoVO.setIsCheckUnitAdmin(0); + if (AdminUnitId!=null){ + loginUserInfoVO.setBindingCheckUnitId(AdminUnitId); } //是否网格员 int easyPhotoMember = userDao.countEasyPhotoMember(phone, userCommunityId); @@ -3492,10 +3495,14 @@ Map<String, String> headerMap = new HashMap<>(); headerMap.put("appid", appId); - String str=""; + String str="https://uu-api.imashuo.com/member/wx/get-access?"+ "appid=" + appId + + "×tamp=" + uuLoginVO.getTimestamp() + + "&sign=" + uuLoginVO.getSign() + + "&mobile=" + uuLoginVO.getMobile(); + if(!StringUtils.isEmpty(uuLoginVO.getProvince())) { - str=str+"province=" + uuLoginVO.getProvince(); + str=str+"&province=" + uuLoginVO.getProvince(); } @@ -3515,17 +3522,17 @@ } // String resultJson = HttpClientUtil.get("https://uu-api.imashuo.com/member/wx/get-acces.s?province=" + uuLoginVO.getProvince() + "&city=" + uuLoginVO.getCity() + "&area=" + uuLoginVO.getArea() + "&appid=" + appId + "×tamp=" + uuLoginVO.getTimestamp() + "&sign=" + uuLoginVO.getSign() + "&mobile=" + uuLoginVO.getMobile() + "&couponId=" + uuLoginVO.getCouponId(), headerMap, null); - String resultJson = HttpClientUtil.get("https://uu-api.imashuo.com/member/wx/get-access?" + str + - "&appid=" + appId + - "×tamp=" + uuLoginVO.getTimestamp() + - "&sign=" + uuLoginVO.getSign() + - "&mobile=" + uuLoginVO.getMobile() , - headerMap, null); + String resultJson = null; + try { + resultJson = HttpClientUtil.getUU(str,headerMap,null); + } catch (Exception e) { + e.printStackTrace(); + } JSONObject result = JSON.parseObject(resultJson); if (result.get("status").equals(1)) { - return R.ok(result.get("data")+" "+resultJson); + return R.ok(result.get("data")); } - return R.fail("信息错误"+" "+resultJson); + return R.fail(resultJson,"信息错误"); } @Override -- Gitblit v1.7.1