I am writing a code to ensure parent record is not deleted when there is a child record associated to it.
The code is as follows
class Customer < ActiveRecord::Base
attr_accessible :name, :number
has_many :customer_bills
before_destroy :check_for_bills
private
def check_for_bills
if customer_bills.count > 0
errors.add :base, "cannot delete customer while Bills exist"
return false
end
end
end
View
<% if flash[:error] -%>
<p class='error'><%=h flash[:error] %></p>
<% end -%>
Controller
def destroy
..
flash[:error] = @customer.errors
..
end
But I am not getting the error message though the code is working properly? what seems to be the problem? Any guidance will be helpful.