From 8c0b5b30e5200e7bd45aa34507c3623e17fcce91 Mon Sep 17 00:00:00 2001
From: lidongdong <1459917685@qq.com>
Date: 星期四, 24 八月 2023 13:47:24 +0800
Subject: [PATCH] 新增小程序积分列表  修改积分发放流程

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComEventServiceImpl.java |   19 ++++++++++++-------
 1 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComEventServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComEventServiceImpl.java
index eb0fb36..61e11f8 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComEventServiceImpl.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComEventServiceImpl.java
@@ -98,7 +98,7 @@
         Boolean isExpertCheck=false;
         Long expertId=null;
         Boolean isStretAccount = isStreetAccount(loginUserInfoVO);
-//        comEvent.setAppId(loginUserInfoVO.getAppId());
+        comEvent.setAppId(loginUserInfoVO.getAppId());
         if (nonNull(comEvent.getUserType())){
             if (comEvent.getUserType().equals(1)){
                 //个人账号权限
@@ -164,8 +164,8 @@
             }
             ComMediateType category = commediateTypeService.getById(comEvent1.getEventCategory());
             comEvent1.setEventCategoryName(category.getName());
-//            comEvent1.setHasPerm(hasPermission(comEvent1,loginUserInfoVO ));
-//            this.accountMenu(comEvent1,comEvent.getUserType(),loginUserInfoVO,isStretAccount);
+            comEvent1.setHasPerm(hasPermission(comEvent1,loginUserInfoVO ));
+            this.accountMenu(comEvent1,comEvent.getUserType(),loginUserInfoVO,isStretAccount);
             });
         return R.ok(list);
     }
@@ -927,12 +927,17 @@
         return map;
     }
 
-    public String getPhone(ComEvent comEvent){
+    public String getPhone(ComEvent comEvent)
+    {
+        if(comEvent==null)
+        {
+            return  "";
+        }
         if (isNull(comEvent.getRequestUserCommunity())){
             ComSanshuoIndustryCenter sanshuoIndustryCenter=comSanShuoIndustryCenterService.getById(comEvent.getCenterId());
             if(sanshuoIndustryCenter==null)
             {
-                return null;
+                return "";
             }
             else
             {
@@ -945,14 +950,14 @@
             {
                 String contactsPhone = comActDO.getContactsPhone();
                 if (isNull(contactsPhone)){
-                    return null;
+                    return "";
                 }
                 else
                 {
                     return contactsPhone;
                 }
             }
-            return null;
+            return "";
         }
     }
 

--
Gitblit v1.7.1