Sha256: 830d9305c84d133b769a23c8d66700b00d85ab7183b6f86c00ef88311cd1984c
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 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 not null # updated_at :datetime not null #
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
enju_circulation-0.1.0.pre40 | app/models/carrier_type_has_checkout_type.rb |
enju_circulation-0.1.0.pre39 | app/models/carrier_type_has_checkout_type.rb |