|
|
|
@ -39,6 +39,11 @@ class Subject < ApplicationRecord
|
|
|
|
|
courses.pluck(:end_date).max
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# 是否有已开课的课堂
|
|
|
|
|
def has_course_start?
|
|
|
|
|
courses.where("start_date <= '#{Date.today}' and end_date >= '#{Date.today}'").count > 0
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# 挑战过路径的成员数(金课统计去重后的报名人数)
|
|
|
|
|
def member_count
|
|
|
|
|
excellent && CourseMember.where(role: 4, course_id: courses.pluck(:id)).pluck(:user_id).uniq.length > shixuns.pluck(:myshixuns_count).sum ?
|
|
|
|
|