fix(测试计划): 修复测试用例筛选条件

This commit is contained in:
wenyann 2020-08-04 19:04:03 +08:00
parent 0cc8ff5d19
commit 74ea612f2e
1 changed files with 7 additions and 1 deletions

View File

@ -170,11 +170,17 @@
#{value}
</foreach>
</when>
<otherwise>
<when test="key=='method'">
and test_case.method in
<foreach collection="values" item="value" separator="," open="(" close=")">
#{value}
</foreach>
</when>
<otherwise>
and test_plan_test_case.status in
<foreach collection="values" item="value" separator="," open="(" close=")">
#{value}
</foreach>
</otherwise>
</choose>
</if>