Sha256: b85812a990f166c3acb4e8540aa99966c74c447ccbd3773cfbf04e0c4051577a
Contents?: true
Size: 1.34 KB
Versions: 3
Compression:
Stored size: 1.34 KB
Contents
teacher_follows_count = 0 courses_counts = 0 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.courses_count json.actives d.actives json.students d.students_count json.regist_at d.user.present? ? d.user.created_on.to_s(:date) : '' json.last_login_on (d.user.present? && d.user.last_login_on.present?) ? d.user.last_login_on.to_s(:date) : '' json.teacher_used d.teacher_used json.wechat d.wechat json.created_at d.created_at.to_s(:date) json.teacher_assist d.teacher_assign_follows.map{|t| t.staff.user.real_name}.join(',') teacher_follows_count += d.teacher_follows_count courses_counts += d.courses_count end end json.totalRow do json.teacher_follows_count teacher_follows_count.to_s json.courses_count courses_counts.to_s end json.code 0 json.count @teachers.total_count
Version data entries
3 entries across 3 versions & 1 rubygems