fix(测试跟踪): 修复功能用例批量修改责任人统计不生效问题

--bug=1013952 --user=赵勇 【测试跟踪】github#14556批量编辑功能用例责任人,首页查看用例责任人分布没有同步修改 https://www.tapd.cn/55049933/s/1178954
This commit is contained in:
fit2-zhao 2022-06-10 15:30:03 +08:00 committed by jianxing
parent 4a96257303
commit 8ec526bf11
2 changed files with 26 additions and 4 deletions

View File

@ -0,0 +1,16 @@
package io.metersphere.commons.constants;
public enum CaseCustomFields {
PRIORITY("用例等级"),
MAINTAINER("责任人");
private String value;
private CaseCustomFields(String value) {
this.value = value;
}
public String getValue() {
return this.value;
}
}

View File

@ -1564,12 +1564,12 @@ public class TestCaseService {
for (int j = 0; j < jsonArray.size(); j++) {
int num = j + 1;
String stepItem = jsonArray.getJSONObject(j).getString("desc");
if(StringUtils.isEmpty(stepItem)){
if (StringUtils.isEmpty(stepItem)) {
stepItem = "";
}
step.append(num + "." + stepItem + "\n");
String resultItem = jsonArray.getJSONObject(j).getString("result");
if(StringUtils.isEmpty(resultItem)){
if (StringUtils.isEmpty(resultItem)) {
resultItem = "";
}
result.append(num + "." + resultItem + "\n");
@ -1668,10 +1668,16 @@ public class TestCaseService {
customField.setValue(request.getCustomField().getValue());
fields.add(request.getCustomField());
}
if (StringUtils.equals(request.getCustomField().getName(), "用例等级")) {
// 自定义字段
testCase.setCustomFields(JSONObject.toJSONString(fields));
if (StringUtils.equals(request.getCustomField().getName(), CaseCustomFields.PRIORITY.getValue())) {
testCase.setPriority((String) request.getCustomField().getValue());
}
testCase.setCustomFields(JSONObject.toJSONString(fields));
if (StringUtils.equals(request.getCustomField().getName(), CaseCustomFields.MAINTAINER.getValue())) {
testCase.setMaintainer((String) request.getCustomField().getValue());
}
testCase.setUpdateTime(System.currentTimeMillis());
TestCaseExample example = new TestCaseExample();
example.createCriteria().andIdEqualTo(testCase.getId());