I have three models that I want to interact with each other.

Kase, Person and and Company.

I have (I think) setup the relationships correctly:

class Kase < ActiveRecord::Base
#HAS ONE COMPANY
has_one :company

#HAS MANY PERSONS
has_many :persons


class Person < ActiveRecord::Base
belongs_to :company

class Company < ActiveRecord::Base
has_many :persons
def to_s; companyname; end

I have put the select field on the create new Kase view, and the create new Person view as follows:

<li>Company<span><%= f.select :company_id, Company.all %> </span></li>

All of the above successfully shows a drop down menu dynamically populated with the company names within Companies.

What I am trying to do is display the contact of the Company record within the kase and person show.html.erb.

For example, If I have a company called "Acme, Inc." and create a new Kase called "Random Case" and choose within the create new case page "Acme, Inc." from the companies drop down menu. I would then want to display "Acme, Inc" along with "Acme, Inc. Mobile" etc. on the "Random Case" show.html.erb.

I hope this makes sense to somebody!

Thanks,

Danny

EDIT: kases_controller

def show
@kase = Kase.find(params[:id])

respond_to do |format|
  format.html # show.html.erb
  format.xml  { render :xml => @kase }
  format.pdf { render :layout => false }

  prawnto :prawn => { 
             :background => "#{RAILS_ROOT}/public/images/jobsheet.png",

             :left_margin => 0, 
             :right_margin => 0, 
             :top_margin => 0, 
             :bottom_margin => 0, 
             :page_size => 'A4' }
end   end
link|improve this question

Aside: Käse? Like German for "cheese"? :D – ewall Apr 26 '10 at 15:32
feedback

2 Answers

up vote 3 down vote accepted

I think your model associations are incomplete based on what you've posted in your question:

class Kase < ActiveRecord::Base
  has_one :company
  has_many :people # Rails should handle the correct plural here
end

class Company < ActiveRecord::Base
  has_many :people
  belongs_to :kase
end

class Person < ActiveRecord::Base
  belongs_to :company
  belongs_to :kase
end

With the assocations set up correctly, you can then access a company's attributes for a given case:

kase.company.name
kase.company.mobile

—or for a given person:

person.company.name
person.company.mobile

You can even get to the company via a person's case:

person.kase.company.name # etc...
link|improve this answer
Great, I have made those changes and will try calling the attributes now. – dannymcc Apr 26 '10 at 15:49
Obviously I guessed what your model attributes are called, so you need to use the correct names as defined in your database migrations. – John Topley Apr 26 '10 at 15:51
If I add the following: <li>Company: <span><%=h @kase.company.companyname %></span></li> I get the following error: NoMethodError in Kases#show Showing app/views/kases/show.html.erb where line #14 raised: You have a nil object when you didn't expect it! The error occurred while evaluating nil.companyname Any idea what I am doing wrong? Thanks, Danny – dannymcc Apr 26 '10 at 16:31
I'm assuming that you actually have some cases with an associated company in your database, right? Can you edit your question to show us the show action within your KasesController. – John Topley Apr 26 '10 at 17:38
Sure, edited above. Really appreciate your help on this! – dannymcc Apr 26 '10 at 18:17
show 20 more comments
feedback

If I understand correctly, your show file would contain something like this to show the mobile number:

# in app/views/kases/show.html.erb
<h1><%=h kase.name %></h1>

<h2>Company Information</h2>
<ul>
  <li>Company Name: <%=h kase.company.name %></li>
  <li>Company Mobile: <%=h kase.company.mobile_phone %></li>
</ul>

Give it a go, see if that's all it takes.

link|improve this answer
Sadly, this results in the same error message as above. Thanks though! – dannymcc Apr 26 '10 at 19:13
Using all the code John above said: If you're saying kase :has_one company than the connection is based on a kase_id column in the company table. Also, you're using company names for id values. That's not right. They are the record number of the company, not the names. Try that. – Josh Pinter Apr 26 '10 at 21:45
Originally it was just the company_id as numbers etc. but I changed that as the drop down on the new case page didn't show the company names just numeric values. – dannymcc Apr 27 '10 at 8:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.