2007-01-22 23:19:16 -05:00
|
|
|
class AbstractCompany < ActiveRecord::Base
|
|
|
|
self.abstract_class = true
|
|
|
|
end
|
|
|
|
|
|
|
|
class Company < AbstractCompany
|
2004-11-23 20:04:44 -05:00
|
|
|
attr_protected :rating
|
2005-07-24 10:01:35 -04:00
|
|
|
set_sequence_name :companies_nonstd_seq
|
2005-01-15 12:45:16 -05:00
|
|
|
|
|
|
|
validates_presence_of :name
|
2006-02-25 18:32:24 -05:00
|
|
|
|
|
|
|
has_one :dummy_account, :foreign_key => "firm_id", :class_name => "Account"
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2006-04-29 19:00:47 -04:00
|
|
|
def arbitrary_method
|
|
|
|
"I am Jack's profound disappointment"
|
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2008-04-11 11:35:09 -04:00
|
|
|
module Namespaced
|
|
|
|
class Company < ::Company
|
|
|
|
end
|
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
|
|
|
|
class Firm < Company
|
2006-03-18 15:25:50 -05:00
|
|
|
has_many :clients, :order => "id", :dependent => :destroy, :counter_sql =>
|
2005-11-16 03:16:54 -05:00
|
|
|
"SELECT COUNT(*) FROM companies WHERE firm_id = 1 " +
|
|
|
|
"AND (#{QUOTED_TYPE} = 'Client' OR #{QUOTED_TYPE} = 'SpecialClient' OR #{QUOTED_TYPE} = 'VerySpecialClient' )"
|
2004-11-23 20:04:44 -05:00
|
|
|
has_many :clients_sorted_desc, :class_name => "Client", :order => "id DESC"
|
|
|
|
has_many :clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id"
|
2008-06-11 07:08:35 -04:00
|
|
|
has_many :unvalidated_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :validate => false
|
2006-03-18 15:25:50 -05:00
|
|
|
has_many :dependent_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :destroy
|
|
|
|
has_many :exclusively_dependent_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :delete_all
|
2005-12-12 19:39:51 -05:00
|
|
|
has_many :limited_clients, :class_name => "Client", :order => "id", :limit => 1
|
2004-11-23 20:04:44 -05:00
|
|
|
has_many :clients_like_ms, :conditions => "name = 'Microsoft'", :class_name => "Client", :order => "id"
|
2006-10-08 22:46:57 -04:00
|
|
|
has_many :clients_with_interpolated_conditions, :class_name => "Client", :conditions => 'rating > #{rating}'
|
2006-09-01 22:51:01 -04:00
|
|
|
has_many :clients_like_ms_with_hash_conditions, :conditions => { :name => 'Microsoft' }, :class_name => "Client", :order => "id"
|
2004-11-23 20:04:44 -05:00
|
|
|
has_many :clients_using_sql, :class_name => "Client", :finder_sql => 'SELECT * FROM companies WHERE client_of = #{id}'
|
2004-12-07 07:25:01 -05:00
|
|
|
has_many :clients_using_counter_sql, :class_name => "Client",
|
2005-01-25 13:45:06 -05:00
|
|
|
:finder_sql => 'SELECT * FROM companies WHERE client_of = #{id}',
|
2004-12-07 07:25:01 -05:00
|
|
|
:counter_sql => 'SELECT COUNT(*) FROM companies WHERE client_of = #{id}'
|
|
|
|
has_many :clients_using_zero_counter_sql, :class_name => "Client",
|
2005-01-25 13:45:06 -05:00
|
|
|
:finder_sql => 'SELECT * FROM companies WHERE client_of = #{id}',
|
2004-12-07 07:25:01 -05:00
|
|
|
:counter_sql => 'SELECT 0 FROM companies WHERE client_of = #{id}'
|
2005-04-07 02:29:31 -04:00
|
|
|
has_many :no_clients_using_counter_sql, :class_name => "Client",
|
|
|
|
:finder_sql => 'SELECT * FROM companies WHERE client_of = 1000',
|
|
|
|
:counter_sql => 'SELECT COUNT(*) FROM companies WHERE client_of = 1000'
|
2007-10-25 23:42:28 -04:00
|
|
|
has_many :clients_using_finder_sql, :class_name => "Client", :finder_sql => 'SELECT * FROM companies WHERE 1=1'
|
2006-04-19 17:37:54 -04:00
|
|
|
has_many :plain_clients, :class_name => 'Client'
|
2008-02-13 01:32:50 -05:00
|
|
|
has_many :readonly_clients, :class_name => 'Client', :readonly => true
|
2008-06-01 02:19:40 -04:00
|
|
|
has_many :clients_using_primary_key, :class_name => 'Client',
|
|
|
|
:primary_key => 'name', :foreign_key => 'firm_name'
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2008-06-11 07:08:35 -04:00
|
|
|
has_one :account, :foreign_key => "firm_id", :dependent => :destroy, :validate => true
|
|
|
|
has_one :unvalidated_account, :foreign_key => "firm_id", :class_name => 'Account', :validate => false
|
2008-05-24 02:34:59 -04:00
|
|
|
has_one :account_with_select, :foreign_key => "firm_id", :select => "id, firm_id", :class_name=>'Account'
|
2008-02-13 01:32:50 -05:00
|
|
|
has_one :readonly_account, :foreign_key => "firm_id", :class_name => "Account", :readonly => true
|
2008-06-03 01:04:46 -04:00
|
|
|
has_one :account_using_primary_key, :primary_key => "firm_id", :class_name => "Account"
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2005-10-14 20:46:55 -04:00
|
|
|
class DependentFirm < Company
|
|
|
|
has_one :account, :foreign_key => "firm_id", :dependent => :nullify
|
|
|
|
has_many :companies, :foreign_key => 'client_of', :order => "id", :dependent => :nullify
|
|
|
|
end
|
|
|
|
|
2006-08-29 13:06:27 -04:00
|
|
|
class ExclusivelyDependentFirm < Company
|
|
|
|
has_one :account, :foreign_key => "firm_id", :dependent => :delete
|
2007-05-24 16:39:51 -04:00
|
|
|
has_many :dependent_sanitized_conditional_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :delete_all, :conditions => "name = 'BigShot Inc.'"
|
|
|
|
has_many :dependent_conditional_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :delete_all, :conditions => ["name = ?", 'BigShot Inc.']
|
2006-08-29 13:06:27 -04:00
|
|
|
end
|
2005-10-14 20:46:55 -04:00
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
class Client < Company
|
|
|
|
belongs_to :firm, :foreign_key => "client_of"
|
|
|
|
belongs_to :firm_with_basic_id, :class_name => "Firm", :foreign_key => "firm_id"
|
2008-05-23 05:20:13 -04:00
|
|
|
belongs_to :firm_with_select, :class_name => "Firm", :foreign_key => "firm_id", :select => "id"
|
2004-11-23 20:04:44 -05:00
|
|
|
belongs_to :firm_with_other_name, :class_name => "Firm", :foreign_key => "client_of"
|
2006-03-18 13:01:50 -05:00
|
|
|
belongs_to :firm_with_condition, :class_name => "Firm", :foreign_key => "client_of", :conditions => ["1 = ?", 1]
|
2008-02-13 01:32:50 -05:00
|
|
|
belongs_to :readonly_firm, :class_name => "Firm", :foreign_key => "firm_id", :readonly => true
|
2005-09-27 23:52:57 -04:00
|
|
|
|
|
|
|
# Record destruction so we can test whether firm.clients.clear has
|
|
|
|
# is calling client.destroy, deleting from the database, or setting
|
|
|
|
# foreign keys to NULL.
|
|
|
|
def self.destroyed_client_ids
|
|
|
|
@destroyed_client_ids ||= Hash.new { |h,k| h[k] = [] }
|
|
|
|
end
|
|
|
|
|
|
|
|
before_destroy do |client|
|
|
|
|
if client.firm
|
|
|
|
Client.destroyed_client_ids[client.firm.id] << client.id
|
|
|
|
end
|
|
|
|
true
|
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2006-03-20 01:45:34 -05:00
|
|
|
# Used to test that read and question methods are not generated for these attributes
|
|
|
|
def ruby_type
|
|
|
|
read_attribute :ruby_type
|
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2006-03-20 01:45:34 -05:00
|
|
|
def rating?
|
|
|
|
query_attribute :rating
|
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
class SpecialClient < Client
|
|
|
|
end
|
|
|
|
|
|
|
|
class VerySpecialClient < SpecialClient
|
|
|
|
end
|
|
|
|
|
|
|
|
class Account < ActiveRecord::Base
|
|
|
|
belongs_to :firm
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2006-08-29 13:06:27 -04:00
|
|
|
def self.destroyed_account_ids
|
|
|
|
@destroyed_account_ids ||= Hash.new { |h,k| h[k] = [] }
|
|
|
|
end
|
|
|
|
|
|
|
|
before_destroy do |account|
|
|
|
|
if account.firm
|
|
|
|
Account.destroyed_account_ids[account.firm.id] << account.id
|
|
|
|
end
|
|
|
|
true
|
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
protected
|
|
|
|
def validate
|
|
|
|
errors.add_on_empty "credit_limit"
|
|
|
|
end
|
2006-09-01 22:51:01 -04:00
|
|
|
end
|