json.data do json.array! @teachers do |d| json.id d.id json.name d.name json.department d.department&.name json.school d.department&.school&.name json.professional_title d.professional_title json.job d.job json.user_id d.user_id json.login d.user_id ? d.user.login : '' json.course_subjects_count d.course_subjects_count json.teacher_follows_count d.teacher_follows_count json.activities_count d.activity_teachers_count json.source EducodeSales::Common.teacher_source_name[d.source_id] json.attitude d.follow_up&.attitude&.name json.courses_count d.user_id ? Course.joins(:course_members).where(course_members: {user_id: d.user_id}).where("is_delete = 0 and role != 4 and excellent = 0 and is_hidden = 0").where("start_date is null or start_date <= '#{Date.today}'").distinct(:course_id).count : 0 json.actives d.actives json.students d.students_count json.regist_at d.user.present? ? d.user.created_on.to_s(:date) : '' json.teacher_used d.teacher_used_of_department end end json.code 0 json.count @teachers.total_count