demarches-normaliennes/app/models/champ.rb

66 lines
1.2 KiB
Ruby
Raw Normal View History

2018-03-06 13:44:29 +01:00
class Champ < ApplicationRecord
belongs_to :dossier, touch: true
2018-02-09 17:38:30 +01:00
belongs_to :type_de_champ, inverse_of: :champ
2016-11-14 18:00:26 +01:00
has_many :commentaires
has_one_attached :piece_justificative_file
has_one :virus_scan
delegate :libelle, :type_champ, :order_place, :mandatory?, :description, :drop_down_list, to: :type_de_champ
scope :updated_since?, -> (date) { where('champs.updated_at > ?', date) }
2018-02-14 11:46:38 +01:00
scope :public_only, -> { where(private: false) }
scope :private_only, -> { where(private: true) }
scope :ordered, -> { includes(:type_de_champ).order('types_de_champ.order_place') }
2018-02-09 17:38:30 +01:00
def public?
!private?
end
2017-03-29 13:37:07 +02:00
def mandatory_and_blank?
if mandatory?
case type_de_champ.type_champ
when TypeDeChamp.type_champs.fetch(:carte)
value.blank? || value == '[]'
else
value.blank?
end
else
false
end
2017-03-29 13:37:07 +02:00
end
def search_terms
[ to_s ]
end
def to_s
if value.present?
string_value
else
''
end
end
def for_export
if value.present?
value_for_export
else
nil
end
end
def main_value_name
:value
end
private
def string_value
value.to_s
end
def value_for_export
value
end
2015-11-03 10:48:40 +01:00
end