From f06ee7333588d2911e1dd160628e49aa819f55df Mon Sep 17 00:00:00 2001 From: xiaohanzi Date: Wed, 6 Jan 2021 10:39:06 +0800 Subject: [PATCH] fix bug --- .../iformall/service/impl/WxCuserFloatingLayerServiceImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxCuserFloatingLayerServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxCuserFloatingLayerServiceImpl.java index 2df2ae53c..3b9b38ecb 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxCuserFloatingLayerServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxCuserFloatingLayerServiceImpl.java @@ -45,6 +45,7 @@ public class WxCuserFloatingLayerServiceImpl implements WxCuserFloatingLayerServ @Override public WxFloatingLayer getFloatingLayer(String openId, String appId) { WxAppinfo appinfo = appinfoMapper.findByAppId(appId); + openId = ""; if (StringUtils.isBlank(openId)) { return getWxFloatingLayer(appinfo.getTenantInfo()); } @@ -92,6 +93,7 @@ public class WxCuserFloatingLayerServiceImpl implements WxCuserFloatingLayerServ } public WxFloatingLayer getWxFloatingLayer(TenantEntity tenantEntity) { + logger.info(" >>>>>>>>>>>>>>>>>>>>>>> tenantentity info "+tenantEntity); WxFloatingLayer wxFloatingLayer = new WxFloatingLayer(); wxFloatingLayer.updateTenantInfo(tenantEntity); wxFloatingLayer.setStatus(EnumFloatingLayerStatus.STATUS_THROW_IN.getCode());