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"
|
2009-08-08 18:48:11 -04:00
|
|
|
has_many :contracts
|
|
|
|
has_many :developers, :through => :contracts
|
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
|
2008-10-13 13:01:37 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def private_method
|
|
|
|
"I am Jack's innermost fears and aspirations"
|
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2008-04-11 11:35:09 -04:00
|
|
|
module Namespaced
|
|
|
|
class Company < ::Company
|
|
|
|
end
|
2008-07-21 15:21:13 -04:00
|
|
|
|
|
|
|
class Firm < ::Company
|
|
|
|
has_many :clients, :class_name => 'Namespaced::Client'
|
|
|
|
end
|
|
|
|
|
|
|
|
class Client < ::Company
|
|
|
|
end
|
2008-04-11 11:35:09 -04:00
|
|
|
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' )"
|
2009-03-09 08:02:31 -04:00
|
|
|
has_many :unsorted_clients, :class_name => "Client"
|
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
|
2010-01-18 13:09:19 -05:00
|
|
|
has_many :limited_clients, :class_name => "Client", :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}'
|
2009-06-30 18:55:09 -04:00
|
|
|
has_many :clients_using_multiline_sql, :class_name => "Client", :finder_sql => '
|
|
|
|
SELECT
|
|
|
|
companies.*
|
|
|
|
FROM companies WHERE companies.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'
|
2009-11-07 14:00:54 -05:00
|
|
|
has_many :clients_using_primary_key_with_delete_all, :class_name => 'Client',
|
|
|
|
:primary_key => 'name', :foreign_key => 'firm_name', :dependent => :delete_all
|
2008-09-11 18:14:06 -04:00
|
|
|
has_many :clients_grouped_by_firm_id, :class_name => "Client", :group => "firm_id", :select => "firm_id"
|
|
|
|
has_many :clients_grouped_by_name, :class_name => "Client", :group => "name", :select => "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
|
2009-03-22 17:57:24 -04:00
|
|
|
# added order by id as in fixtures there are two accounts for Rails Core
|
|
|
|
# Oracle tests were failing because of that as the second fixture was selected
|
|
|
|
has_one :account_using_primary_key, :primary_key => "firm_id", :class_name => "Account", :order => "id"
|
2009-07-11 14:04:18 -04:00
|
|
|
has_one :account_using_foreign_and_primary_keys, :foreign_key => "firm_name", :primary_key => "name", :class_name => "Account"
|
2009-03-06 14:11:13 -05:00
|
|
|
has_one :deletable_account, :foreign_key => "firm_id", :class_name => "Account", :dependent => :delete
|
2010-03-07 19:53:21 -05:00
|
|
|
|
2009-09-26 09:33:50 -04:00
|
|
|
has_one :account_limit_500_with_hash_conditions, :foreign_key => "firm_id", :class_name => "Account", :conditions => { :credit_limit => 500 }
|
|
|
|
|
2009-07-11 11:52:13 -04:00
|
|
|
has_one :unautosaved_account, :foreign_key => "firm_id", :class_name => 'Account', :autosave => false
|
|
|
|
has_many :accounts
|
|
|
|
has_many :unautosaved_accounts, :foreign_key => "firm_id", :class_name => 'Account', :autosave => false
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2005-10-14 20:46:55 -04:00
|
|
|
class DependentFirm < Company
|
2010-01-18 13:09:19 -05:00
|
|
|
has_one :account, :foreign_key => "firm_id", :dependent => :nullify
|
|
|
|
has_many :companies, :foreign_key => 'client_of', :dependent => :nullify
|
2005-10-14 20:46:55 -04:00
|
|
|
end
|
|
|
|
|
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]
|
2009-07-15 16:22:25 -04:00
|
|
|
belongs_to :firm_with_primary_key, :class_name => "Firm", :primary_key => "name", :foreign_key => "firm_name"
|
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
|
|
|
|
2009-09-08 11:10:14 -04:00
|
|
|
before_destroy :overwrite_to_raise
|
|
|
|
|
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
|
2008-10-16 17:17:49 -04:00
|
|
|
|
2009-09-08 11:10:14 -04:00
|
|
|
def overwrite_to_raise
|
|
|
|
end
|
|
|
|
|
2008-10-16 17:17:49 -04:00
|
|
|
class << self
|
|
|
|
private
|
|
|
|
|
|
|
|
def private_method
|
|
|
|
"darkness"
|
|
|
|
end
|
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2009-04-20 13:12:40 -04:00
|
|
|
class ExclusivelyDependentFirm < Company
|
|
|
|
has_one :account, :foreign_key => "firm_id", :dependent => :delete
|
|
|
|
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.']
|
|
|
|
has_many :dependent_hash_conditional_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :delete_all, :conditions => {:name => 'BigShot Inc.'}
|
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
|
|
|
|
class SpecialClient < Client
|
|
|
|
end
|
|
|
|
|
|
|
|
class VerySpecialClient < SpecialClient
|
|
|
|
end
|
|
|
|
|
|
|
|
class Account < ActiveRecord::Base
|
2010-03-07 19:53:21 -05:00
|
|
|
belongs_to :firm, :class_name => 'Company'
|
2009-07-11 11:52:13 -04:00
|
|
|
belongs_to :unautosaved_firm, :foreign_key => "firm_id", :class_name => "Firm", :autosave => false
|
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
|
|
|
|
2009-03-21 15:05:09 -04:00
|
|
|
validate :check_empty_credit_limit
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
protected
|
2009-03-21 15:05:09 -04:00
|
|
|
|
|
|
|
def check_empty_credit_limit
|
|
|
|
errors.add_on_empty "credit_limit"
|
|
|
|
end
|
2008-10-13 13:01:37 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def private_method
|
|
|
|
"Sir, yes sir!"
|
|
|
|
end
|
2006-09-01 22:51:01 -04:00
|
|
|
end
|