fix(接口定义): 修复回收站高级搜索执行结果失败的缺陷 (#17471)

--bug=1016224 --user=王孝刚 【接口测试】接口定义,回收站,case列表,搜索执行结果是未执行的case,搜索结果是空的
https://www.tapd.cn/55049933/s/1234082

Co-authored-by: wxg0103 <727495428@qq.com>
This commit is contained in:
MeterSphere Bot 2022-08-26 13:41:04 +08:00 committed by GitHub
parent 162b1fa482
commit ec5d0f2c7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 1 deletions

View File

@ -114,12 +114,21 @@
<foreach collection="${object}.value" item="v" separator="," open="(" close=")">
#{v}
</foreach>
<if test="${object}.value.contains(''.toString())">
or t3.status is null
</if>
<if test="${condition}.exec_result != null">
)
</if>
</when>
<when test='${object}.operator == "not in"'>
not in
<foreach collection="${object}.value" item="v" separator="," open="(" close=")">
#{v}
</foreach>
<if test="${condition}.exec_result != null">
)
</if>
</when>
<when test='${object}.operator == "between"'>
between #{${object}.value[0]} and #{${object}.value[1]}
@ -211,6 +220,13 @@
<property name="object" value="${condition}.status"/>
</include>
</if>
<if test="${condition}.exec_result != null">
and (t3.status
<include refid="condition">
<property name="object" value="${condition}.exec_result"/>
</include>
</if>
</sql>
<sql id="countCombine">

View File

@ -178,7 +178,7 @@ export const API_CASE_PRIORITY = {
}
}
export const API_CASE_RESULT = {
key: "status",
key: "exec_result",
name: 'MsTableSearchSelect',
label: 'test_track.plan_view.execute_result',
operator: {