提交 14ea0f17 authored 作者: taojinlong's avatar taojinlong

fix: 删除仪表盘时,同步删除相关的收藏,分享数据

上级 ff24ab3d
...@@ -19,6 +19,7 @@ import org.apache.commons.collections4.CollectionUtils; ...@@ -19,6 +19,7 @@ import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
import org.springframework.util.Assert; import org.springframework.util.Assert;
...@@ -45,14 +46,15 @@ public class PanelGroupService { ...@@ -45,14 +46,15 @@ public class PanelGroupService {
@Resource @Resource
private ExtPanelGroupMapper extPanelGroupMapper; private ExtPanelGroupMapper extPanelGroupMapper;
@Resource @Resource
private PanelDesignMapper panelDesignMapper;
@Resource
private ChartViewService chartViewService; private ChartViewService chartViewService;
@Resource @Resource
private ChartViewMapper chartViewMapper; private ChartViewMapper chartViewMapper;
@Resource @Resource
private ExtPanelDesignMapper extPanelDesignMapper; private StoreService storeService;
@Resource
private ShareService shareService;
@Resource
private PanelLinkService panelLinkService;
public List<PanelGroupDTO> tree(PanelGroupRequest panelGroupRequest) { public List<PanelGroupDTO> tree(PanelGroupRequest panelGroupRequest) {
String userId = String.valueOf(AuthUtils.getUser().getUserId()); String userId = String.valueOf(AuthUtils.getUser().getUserId());
panelGroupRequest.setUserId(userId); panelGroupRequest.setUserId(userId);
...@@ -93,6 +95,9 @@ public class PanelGroupService { ...@@ -93,6 +95,9 @@ public class PanelGroupService {
public void deleteCircle(String id) { public void deleteCircle(String id) {
Assert.notNull(id, "id cannot be null"); Assert.notNull(id, "id cannot be null");
extPanelGroupMapper.deleteCircle(id); extPanelGroupMapper.deleteCircle(id);
storeService.removeByPanelId(id);
shareService.delete(id, null);
panelLinkService.deleteByResourceId(id);
} }
......
...@@ -73,6 +73,10 @@ public class PanelLinkService { ...@@ -73,6 +73,10 @@ public class PanelLinkService {
return convertDto(one); return convertDto(one);
} }
public void deleteByResourceId(String resourceId){
mapper.deleteByPrimaryKey(resourceId);
}
public String decryptParam(String text) throws Exception { public String decryptParam(String text) throws Exception {
return RsaUtil.decryptByPrivateKey(RsaProperties.privateKey, text); return RsaUtil.decryptByPrivateKey(RsaProperties.privateKey, text);
} }
...@@ -100,7 +104,6 @@ public class PanelLinkService { ...@@ -100,7 +104,6 @@ public class PanelLinkService {
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
System.out.println(s);
return encrypt; return encrypt;
} }
private GenerateDto convertDto(PanelLink linl){ private GenerateDto convertDto(PanelLink linl){
......
...@@ -76,7 +76,11 @@ public class ShareService { ...@@ -76,7 +76,11 @@ public class ShareService {
@Transactional @Transactional
public void delete(String panel_group_id, Integer type){ public void delete(String panel_group_id, Integer type){
PanelShareExample example = new PanelShareExample(); PanelShareExample example = new PanelShareExample();
example.createCriteria().andPanelGroupIdEqualTo(panel_group_id).andTypeEqualTo(type); PanelShareExample.Criteria criteria = example.createCriteria();
criteria.andPanelGroupIdEqualTo(panel_group_id);
if(type != null){
criteria.andTypeEqualTo(type);
}
mapper.deleteByExample(example); mapper.deleteByExample(example);
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论