Sha256: 81b7dd83629235b27be8e52c0648143a3bf298edb627209a4bb9b5ec4df85c29
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
class CarrierTypeHasCheckoutType < ActiveRecord::Base attr_accessible :carrier_type_id, :checkout_type_id, :note scope :available_for_carrier_type, lambda {|carrier_type| includes(:carrier_type).where('carrier_types.name = ?', carrier_type.name)} scope :available_for_user_group, lambda {|user_group| includes(checkout_type: :user_groups).where('user_groups.name = ?', user_group.name)} belongs_to :carrier_type, validate: true belongs_to :checkout_type, validate: true validates_presence_of :carrier_type, :checkout_type validates_associated :carrier_type, :checkout_type validates_uniqueness_of :checkout_type_id, scope: :carrier_type_id acts_as_list scope: :carrier_type_id end # == Schema Information # # Table name: carrier_type_has_checkout_types # # id :integer not null, primary key # carrier_type_id :integer not null # checkout_type_id :integer not null # note :text # position :integer # created_at :datetime # updated_at :datetime #
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
enju_circulation-0.1.0.pre41 | app/models/carrier_type_has_checkout_type.rb |