I have a model called RsvpRegistrations with

belongs_to :rsvp

I need to use values from the parent 'rsvp' object in my validations such as

validates_presence_of :phone if self.rsvp.phone 

(Rsvp.phone is boolean)

But this doesn't work. The error I get is undefined method `rsvp'. How can I access the parent object and its values?

Once I get it working, I have other similar validations to run, so I'm thinking I need to grab the parent 'rsvp' one time and then reference it in my other validations.

Thanks in advance.

link|improve this question

71% accept rate
what do you mean it does not work. Do you have an error log? – Codeglot Jul 12 '11 at 22:10
Have you checked out accepts_nested_attributes_for ? Looks like a situation where you might want it – Msencenb Jul 12 '11 at 22:14
feedback

2 Answers

up vote 2 down vote accepted
validates_presence_of :phone, :if => Proc.new { |obj| obj.rsvp.phone? }

More options here

link|improve this answer
This worked! Can't thank you enough. One further question though: I need to reference the parent object about 8 times in this model. Is there a better way to store the parent in some kind of instance variable and reference it in each of my validations, or is it fine just to repeat the code above with the various tweaks? – Brett Jul 13 '11 at 14:15
It's fine to repeat this code. The rsvp object will only be retrieved from the database the first time you access it. – Michaël Witrant Jul 13 '11 at 22:53
feedback

If you have multiple validations that all reference RSVP, it may be more efficient to create a custom validation method:

# app/models/rsvp_registration.rb
def RsvpRegistration
  def validate
    rsvp = self.rsvp
    errors.add(:rsvp, 'Phone is missing') unless rsvp.phone?
    errors.add(:rsvp, 'Other messages') if condition
  end
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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