fix(测试跟踪): 脑图编辑保存已经删除的用例报错
--bug=1033455 --user=陈建星 【测试跟踪】github#27866使用脑图进行修改和新增用例,保存后,页面未报错,重新打开后,用例未保存上,数据丢失 https://www.tapd.cn/55049933/s/1444658
This commit is contained in:
parent
7b1e51cb1f
commit
b55cb5e3b8
|
@ -432,6 +432,10 @@ public class TestCaseService {
|
||||||
testCase.setUpdateTime(System.currentTimeMillis());
|
testCase.setUpdateTime(System.currentTimeMillis());
|
||||||
TestCaseWithBLOBs originCase = testCaseMapper.selectByPrimaryKey(testCase.getId());
|
TestCaseWithBLOBs originCase = testCaseMapper.selectByPrimaryKey(testCase.getId());
|
||||||
|
|
||||||
|
if (originCase == null || StringUtils.equalsIgnoreCase(originCase.getStatus(), CommonConstants.TrashStatus)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
if (handleDemand) {
|
if (handleDemand) {
|
||||||
try {
|
try {
|
||||||
// 同步缺陷与需求的关联关系
|
// 同步缺陷与需求的关联关系
|
||||||
|
|
Loading…
Reference in New Issue