fix(项目管理): 日志跳转缺陷详情页
--bug=1036877 --user=王旭 【项目管理】日志-缺陷详情取消关联功能用例-点击名称未跳转到缺陷详情页 https://www.tapd.cn/55049933/s/1490779
This commit is contained in:
parent
a9510c1f81
commit
1bcbb6a306
|
@ -31,7 +31,7 @@ public class BugRelateCaseLogService {
|
|||
public LogDTO getRelateLog(String id) {
|
||||
BugRelationCase bugRelationCase = bugRelationCaseMapper.selectByPrimaryKey(id);
|
||||
BugRelateCaseDTO relateCase = extBugRelateCaseMapper.getRelateCase(bugRelationCase.getCaseId(), bugRelationCase.getCaseType());
|
||||
LogDTO dto = new LogDTO(relateCase.getProjectId(), null, null, null, OperationLogType.DISASSOCIATE.name(), OperationLogModule.BUG_MANAGEMENT_INDEX, relateCase.getRelateCaseName());
|
||||
LogDTO dto = new LogDTO(relateCase.getProjectId(), null, bugRelationCase.getBugId(), null, OperationLogType.DISASSOCIATE.name(), OperationLogModule.BUG_MANAGEMENT_INDEX, relateCase.getRelateCaseName());
|
||||
dto.setPath("/bug/un-relate");
|
||||
dto.setMethod(HttpMethodConstants.GET.name());
|
||||
dto.setModifiedValue(JSON.toJSONBytes(relateCase));
|
||||
|
|
Loading…
Reference in New Issue