fix(工作台): 修复工作台中我的待办查到了已完成的功能用例的问题
--bug=1025573 --user=宋天阳 【我的工作台】我的待办-功能用例数统计错误-用例状态是已完成,仍统计在我的待办中。 https://www.tapd.cn/55049933/s/1364029
This commit is contained in:
parent
9bc3ddd6a8
commit
c63d9ac722
|
@ -204,7 +204,7 @@
|
||||||
</foreach>
|
</foreach>
|
||||||
and tc.review_status in ('Prepare','Pass','UnPass')
|
and tc.review_status in ('Prepare','Pass','UnPass')
|
||||||
and tc.create_user = #{userId,jdbcType=VARCHAR}
|
and tc.create_user = #{userId,jdbcType=VARCHAR}
|
||||||
and (tc.status is null or tc.status != 'Trash');
|
and (tc.status is null or tc.status Not IN ('Trash','Completed'));
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<sql id="queryPublicCaseWhere">
|
<sql id="queryPublicCaseWhere">
|
||||||
|
@ -303,14 +303,16 @@
|
||||||
</when>
|
</when>
|
||||||
<when test="key.startsWith('custom_single')">
|
<when test="key.startsWith('custom_single')">
|
||||||
and test_case.id in (
|
and test_case.id in (
|
||||||
select resource_id from custom_field_test_case where concat('custom_single-',field_id) = #{key}
|
select resource_id from custom_field_test_case where concat('custom_single-',field_id) =
|
||||||
|
#{key}
|
||||||
and trim(both '"' from value) in
|
and trim(both '"' from value) in
|
||||||
<include refid="io.metersphere.base.mapper.ext.ExtBaseMapper.filterInWrapper"/>
|
<include refid="io.metersphere.base.mapper.ext.ExtBaseMapper.filterInWrapper"/>
|
||||||
)
|
)
|
||||||
</when>
|
</when>
|
||||||
<when test="key.startsWith('custom_multiple')">
|
<when test="key.startsWith('custom_multiple')">
|
||||||
and test_case.id in (
|
and test_case.id in (
|
||||||
select resource_id from custom_field_test_case where concat('custom_multiple-',field_id) = #{key}
|
select resource_id from custom_field_test_case where concat('custom_multiple-',field_id) =
|
||||||
|
#{key}
|
||||||
and
|
and
|
||||||
<foreach collection="values" item="value" separator="or" open="(" close=")">
|
<foreach collection="values" item="value" separator="or" open="(" close=")">
|
||||||
JSON_CONTAINS(value, #{value})
|
JSON_CONTAINS(value, #{value})
|
||||||
|
|
Loading…
Reference in New Issue