diff --git a/src/main/resource/Sql/Collect.sql b/src/main/resource/Sql/Collect.sql index 8cdfedf7..c7d981e5 100644 --- a/src/main/resource/Sql/Collect.sql +++ b/src/main/resource/Sql/Collect.sql @@ -8,7 +8,7 @@ (select count(1) from t_collect_job_sheet as t2 where t2.job_id=t1.job_id) as all_sheet, (select count(1) from t_collect_job_target as t2 where t2.job_id=t1.job_id and t2.fill_type_id in (2,3)) as forward_count, --转发数量 (select count(1) from t_collect_job_target as t2 where t2.job_id=t1.job_id and t2.forward_progress=2) as forward_finish_count --转发完成数量 - from t_collect_job as t1 where publish_role_id = #para(publish_role_id) and parent_id=-1 + from t_collect_job as t1 where t1.publish_role_id = #para(publish_role_id) and t1.parent_id=-1 #if(job_name) and t1.job_name like #para(job_name, "like") #end