2016-03-23 18:39:41 +01:00
|
|
|
class Training < ActiveRecord::Base
|
|
|
|
extend FriendlyId
|
|
|
|
friendly_id :name, use: :slugged
|
|
|
|
|
2016-07-13 18:15:14 +02:00
|
|
|
has_one :training_image, as: :viewable, dependent: :destroy
|
|
|
|
accepts_nested_attributes_for :training_image, allow_destroy: true
|
|
|
|
|
2018-12-12 13:49:14 +01:00
|
|
|
has_and_belongs_to_many :machines, join_table: 'trainings_machines'
|
2016-03-23 18:39:41 +01:00
|
|
|
|
|
|
|
has_many :trainings_availabilities
|
|
|
|
has_many :availabilities, through: :trainings_availabilities, dependent: :destroy
|
|
|
|
|
|
|
|
has_many :reservations, as: :reservable, dependent: :destroy
|
|
|
|
|
2019-06-05 16:21:39 +02:00
|
|
|
# members who has validated the trainings
|
|
|
|
has_many :statistic_profile_trainings, dependent: :destroy
|
|
|
|
has_many :statistic_profiles, through: :statistic_profile_trainings
|
2016-03-23 18:39:41 +01:00
|
|
|
|
|
|
|
has_many :trainings_pricings, dependent: :destroy
|
|
|
|
|
|
|
|
has_many :credits, as: :creditable, dependent: :destroy
|
|
|
|
has_many :plans, through: :credits
|
|
|
|
|
|
|
|
after_create :create_statistic_subtype
|
|
|
|
after_create :create_trainings_pricings
|
|
|
|
after_update :update_statistic_subtype, if: :name_changed?
|
|
|
|
after_destroy :remove_statistic_subtype
|
|
|
|
|
|
|
|
def amount_by_group(group)
|
|
|
|
trainings_pricings.where(group_id: group).first
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_statistic_subtype
|
|
|
|
index = StatisticIndex.where(es_type_key: 'training')
|
2018-12-12 13:49:14 +01:00
|
|
|
StatisticSubType.create!(statistic_types: index.first.statistic_types, key: slug, label: name)
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def update_statistic_subtype
|
|
|
|
index = StatisticIndex.where(es_type_key: 'training')
|
2018-12-12 13:49:14 +01:00
|
|
|
subtype = StatisticSubType.joins(statistic_type_sub_types: :statistic_type)
|
|
|
|
.where(key: slug, statistic_types: { statistic_index_id: index.first.id }).first
|
|
|
|
subtype.label = name
|
2016-03-23 18:39:41 +01:00
|
|
|
subtype.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_statistic_subtype
|
2018-12-12 13:49:14 +01:00
|
|
|
subtype = StatisticSubType.where(key: slug).first
|
2016-03-23 18:39:41 +01:00
|
|
|
subtype.destroy!
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroyable?
|
|
|
|
reservations.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2018-12-12 13:49:14 +01:00
|
|
|
|
|
|
|
def create_trainings_pricings
|
|
|
|
Group.all.each do |group|
|
|
|
|
TrainingsPricing.create(training: self, group: group, amount: 0)
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
2018-12-12 13:49:14 +01:00
|
|
|
end
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|