2018-03-06 13:44:29 +01:00
|
|
|
class Champ < ApplicationRecord
|
2017-10-24 18:12:25 +02:00
|
|
|
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
|
2018-01-30 19:17:16 +01:00
|
|
|
has_one_attached :piece_justificative_file
|
2018-05-11 14:59:20 +02:00
|
|
|
has_one :virus_scan
|
2016-03-15 17:17:56 +01:00
|
|
|
|
2018-02-09 17:42:53 +01:00
|
|
|
delegate :libelle, :type_champ, :order_place, :mandatory?, :description, :drop_down_list, to: :type_de_champ
|
2016-03-15 17:17:56 +01:00
|
|
|
|
2017-10-05 16:10:00 +02:00
|
|
|
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) }
|
2018-06-26 17:27:00 +02:00
|
|
|
scope :ordered, -> { includes(:type_de_champ).order('types_de_champ.order_place') }
|
2017-10-05 16:10:00 +02:00
|
|
|
|
2018-02-09 17:38:30 +01:00
|
|
|
def public?
|
|
|
|
!private?
|
|
|
|
end
|
|
|
|
|
2017-03-29 13:37:07 +02:00
|
|
|
def mandatory_and_blank?
|
2018-06-14 17:44:03 +02:00
|
|
|
mandatory? && value.blank?
|
2017-03-29 13:37:07 +02:00
|
|
|
end
|
|
|
|
|
2018-07-25 19:34:06 +02:00
|
|
|
def search_terms
|
|
|
|
[ to_s ]
|
|
|
|
end
|
|
|
|
|
2017-10-16 17:39:34 +02:00
|
|
|
def to_s
|
|
|
|
if value.present?
|
2018-06-15 13:47:32 +02:00
|
|
|
string_value
|
2017-10-16 17:39:34 +02:00
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-26 16:54:10 +02:00
|
|
|
def for_export
|
|
|
|
if value.present?
|
2018-06-15 14:10:25 +02:00
|
|
|
value_for_export
|
2017-10-26 16:54:10 +02:00
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-06-21 15:23:24 +02:00
|
|
|
def main_value_name
|
|
|
|
:value
|
|
|
|
end
|
|
|
|
|
2018-06-15 13:47:32 +02:00
|
|
|
private
|
|
|
|
|
|
|
|
def string_value
|
|
|
|
value.to_s
|
|
|
|
end
|
2018-06-15 14:10:25 +02:00
|
|
|
|
|
|
|
def value_for_export
|
|
|
|
value
|
|
|
|
end
|
2015-11-03 10:48:40 +01:00
|
|
|
end
|