1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/machine.rb
2016-03-23 18:39:41 +01:00

71 lines
2.2 KiB
Ruby

class Machine < ActiveRecord::Base
extend FriendlyId
friendly_id :name, use: :slugged
has_one :machine_image, as: :viewable, dependent: :destroy
accepts_nested_attributes_for :machine_image, allow_destroy: true
has_many :machine_files, as: :viewable, dependent: :destroy
accepts_nested_attributes_for :machine_files, allow_destroy: true, reject_if: :all_blank
has_and_belongs_to_many :projects, join_table: :projects_machines
has_many :machines_availabilities, dependent: :destroy
has_many :availabilities, through: :machines_availabilities
has_and_belongs_to_many :trainings, join_table: :trainings_machines
validates :name, presence: true, length: { maximum: 50 }
validates :description, presence: true
has_many :prices, as: :priceable, dependent: :destroy
has_many :reservations, as: :reservable, dependent: :destroy
has_many :credits, as: :creditable, dependent: :destroy
has_many :plans, through: :credits
after_create :create_statistic_subtype
after_create :create_machine_prices
after_update :update_statistic_subtype, if: :name_changed?
after_destroy :remove_statistic_subtype
def not_subscribe_price(group_id)
prices.find_by(plan_id: nil, group_id: group_id)
end
def prices_by_group(group_id, plan_id = nil)
prices.where.not(plan_id: plan_id).where(group_id: group_id)
end
def create_statistic_subtype
index = StatisticIndex.where(es_type_key: 'machine')
StatisticSubType.create!({statistic_types: index.first.statistic_types, key: self.slug, label: self.name})
end
def update_statistic_subtype
index = StatisticIndex.where(es_type_key: 'machine')
subtype = StatisticSubType.joins(statistic_type_sub_types: :statistic_type).where(key: self.slug, statistic_types: { statistic_index_id: index.first.id }).first
subtype.label = self.name
subtype.save!
end
def remove_statistic_subtype
subtype = StatisticSubType.where(key: self.slug).first
subtype.destroy!
end
def create_machine_prices
Group.all.each do |group|
Price.create(priceable: self, group: group, amount: 0)
end
Plan.all.includes(:group).each do |plan|
Price.create(group: plan.group, plan: plan, priceable: self, amount: 0)
end
end
def destroyable?
reservations.empty?
end
end