You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.6 KiB
56 lines
1.6 KiB
class School < ApplicationRecord
|
|
has_many :schedules, dependent: :destroy
|
|
has_many :recipient_lists, dependent: :destroy
|
|
belongs_to :district
|
|
has_many :recipients, dependent: :destroy
|
|
has_many :school_categories, dependent: :destroy
|
|
has_many :user_schools, dependent: :destroy
|
|
|
|
validates :name, presence: true
|
|
|
|
scope :alphabetic, -> { order(name: :asc) }
|
|
|
|
include FriendlyId
|
|
friendly_id :name, :use => [:slugged]
|
|
|
|
def available_responders_for(question)
|
|
if question.for_students?
|
|
return student_count || 1
|
|
elsif question.for_teachers?
|
|
return teacher_count || 1
|
|
else
|
|
return 1
|
|
end
|
|
end
|
|
|
|
def merge_into(school_name)
|
|
school = district.schools.where(name: school_name).first
|
|
if school.nil?
|
|
puts "Unable to find school named #{school_name} in district (#{district.name})"
|
|
return
|
|
end
|
|
puts "Merging #{name} (#{id}) in to #{school.name} (#{school.id})"
|
|
schedules.update_all(school_id: school.id)
|
|
recipient_lists.update_all(school_id: school.id)
|
|
recipients.update_all(school_id: school.id)
|
|
school_categories.each do |school_category|
|
|
school_category.update(school_id: school.id)
|
|
existing_school_category = school.school_categories.for(school_category.school, school_category.category).in(school_category.year)
|
|
if existing_school_category.present?
|
|
if existing_school_category.attempt_count == 0
|
|
existing_school_category.destroy
|
|
else
|
|
school_category.destroy
|
|
end
|
|
end
|
|
end
|
|
|
|
reload
|
|
|
|
user_schools.update_all(school_id: school.id)
|
|
# school.school_categories.map(&:sync_aggregated_responses)
|
|
destroy
|
|
end
|
|
|
|
end
|