统计当日面试数量不计算已结束的面试

This commit is contained in:
feng.li
2024-01-26 16:46:46 +08:00
parent 3edef42f8c
commit b7db89f7d7

View File

@@ -268,6 +268,8 @@
and t1.deleted = 0 and application_approved = 1
-- 排除会销面试
and t2.interview_plan_id is null
-- 排除已结束的面试
and t1.actual_end_time is null
</where>
group by interview_date
</select>