44 lines
1.3 KiB
Ruby
44 lines
1.3 KiB
Ruby
class Particular < ActiveRecord::Base
|
|
|
|
belongs_to :owner, :polymorphic => true
|
|
validates :name, :presence => true, :if => :force_validation
|
|
validates :firstname, :presence => true, :if => :force_validation
|
|
validates :email, :presence => true, :format => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i, :if => :force_email_validation
|
|
validates :address_2, :presence => true, :if => :force_validation
|
|
validates :cp, :presence => true, :if => :force_validation
|
|
validates :city, :presence => true, :if => :force_validation
|
|
validates :country, :presence => true, :if => :force_validation
|
|
validates :tel, :presence => true, :if => :force_validation
|
|
validates :organisation, :presence => true, :if => :validate_pro
|
|
attr_accessor :validate_email, :skip_email
|
|
def validate_pro
|
|
true if self.force_validation and self.pro
|
|
end
|
|
def force_email_validation
|
|
true if (self.validate_email or self.force_validation) and !skip_email
|
|
end
|
|
def force_validation
|
|
|
|
if self.skip_validation
|
|
false
|
|
else
|
|
true
|
|
end
|
|
end
|
|
|
|
def address_longue
|
|
address_2.to_s + " " + address_3.to_s
|
|
end
|
|
|
|
def civilite_prodons
|
|
if self.civilite == "M"
|
|
"MONSIEUR"
|
|
elsif self.civilite == "Mme"
|
|
"MADAME"
|
|
else
|
|
""
|
|
end
|
|
end
|
|
|
|
end
|