Sha256: 159bf68e4aa8f33d4e84c61fcb7c6394864e9edff07b69ce59c5baf3f05c7787

Contents?: true

Size: 1.21 KB

Versions: 7

Compression:

Stored size: 1.21 KB

Contents

class CheckoutType < ActiveRecord::Base
  attr_accessible :name, :display_name, :note
  include MasterModel
  default_scope :order => "checkout_types.position"
  scope :available_for_carrier_type, lambda {|carrier_type| {:include => :carrier_types, :conditions => ['carrier_types.name = ?', carrier_type.name], :order => 'carrier_types.position'}}
  scope :available_for_user_group, lambda {|user_group| {:include => :user_groups, :conditions => ['user_groups.name = ?', user_group.name], :order => 'user_group.position'}}

  has_many :user_group_has_checkout_types, :dependent => :destroy
  has_many :user_groups, :through => :user_group_has_checkout_types
  has_many :carrier_type_has_checkout_types, :dependent => :destroy
  has_many :carrier_types, :through => :carrier_type_has_checkout_types
  #has_many :item_has_checkout_types, :dependent => :destroy
  #has_many :items, :through => :item_has_checkout_types
  has_many :items

  paginates_per 10
end

# == Schema Information
#
# Table name: checkout_types
#
#  id           :integer         not null, primary key
#  name         :string(255)     not null
#  display_name :text
#  note         :text
#  position     :integer
#  created_at   :datetime
#  updated_at   :datetime
#

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
enju_circulation-0.1.0.pre7 app/models/checkout_type.rb
enju_circulation-0.1.0.pre6 app/models/checkout_type.rb
enju_circulation-0.1.0.pre5 app/models/checkout_type.rb
enju_circulation-0.1.0.pre4 app/models/checkout_type.rb
enju_circulation-0.1.0.pre3 app/models/checkout_type.rb
enju_circulation-0.1.0.pre2 app/models/checkout_type.rb
enju_circulation-0.1.0.pre app/models/checkout_type.rb