fix(测试跟踪): 修复功能用例批量修改责任人统计不生效问题
--bug=1013952 --user=赵勇 【测试跟踪】github#14556批量编辑功能用例责任人,首页查看用例责任人分布没有同步修改 https://www.tapd.cn/55049933/s/1178954
This commit is contained in:
parent
4a96257303
commit
8ec526bf11
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue