fix(测试跟踪): 首页遗留缺陷占比统计错误
--bug=1017609 --user=陈建星 【测试跟踪】首页遗留缺陷统计总数和占比有统计错误 https://www.tapd.cn/55049933/s/1293338
This commit is contained in:
parent
2e0982cea8
commit
eb7f9bd214
|
@ -891,19 +891,8 @@
|
||||||
select distinct tci.issues_id
|
select distinct tci.issues_id
|
||||||
from test_plan_test_case tptc
|
from test_plan_test_case tptc
|
||||||
join test_case_issues tci on tptc.id = tci.resource_id
|
join test_case_issues tci on tptc.id = tci.resource_id
|
||||||
right join test_case
|
join issues on tci.issues_id = issues.id
|
||||||
on test_case.id = tci.ref_id
|
where tptc.plan_id = #{planId} and tptc.is_del != 1
|
||||||
join issues
|
|
||||||
on tci.issues_id = issues.id
|
|
||||||
where tptc.plan_id = #{planId}
|
|
||||||
and test_case.status != 'Trash'
|
|
||||||
union distinct
|
|
||||||
select distinct tci.issues_id
|
|
||||||
from test_plan_test_case tptc
|
|
||||||
join test_case_issues tci on tptc.id = tci.resource_id
|
|
||||||
join issues
|
|
||||||
on tci.issues_id = issues.id
|
|
||||||
where tptc.plan_id = #{planId}
|
|
||||||
</select>
|
</select>
|
||||||
<select id="getTestPlanCase" resultType="int">
|
<select id="getTestPlanCase" resultType="int">
|
||||||
select count(s)
|
select count(s)
|
||||||
|
|
Loading…
Reference in New Issue