demarches-normaliennes/app/models/champ.rb

83 lines
1.9 KiB
Ruby
Raw Normal View History

2018-03-06 13:44:29 +01:00
class Champ < ApplicationRecord
belongs_to :dossier, inverse_of: :champs, touch: true
2018-02-09 17:38:30 +01:00
belongs_to :type_de_champ, inverse_of: :champ
belongs_to :parent, class_name: 'Champ'
2016-11-14 18:00:26 +01:00
has_many :commentaires
has_one_attached :piece_justificative_file
2019-07-11 10:28:44 +02:00
# We declare champ specific relationships (Champs::CarteChamp, Champs::SiretChamp and Champs::RepetitionChamp)
2018-11-08 14:36:53 +01:00
# here because otherwise we can't easily use includes in our queries.
has_many :geo_areas, dependent: :destroy
belongs_to :etablissement, dependent: :destroy
2019-07-11 10:28:44 +02:00
has_many :champs, -> { ordered }, foreign_key: :parent_id, inverse_of: :parent, dependent: :destroy
2018-11-08 14:36:53 +01:00
2019-01-30 16:14:15 +01:00
delegate :libelle, :type_champ, :order_place, :mandatory?, :description, :drop_down_list, :exclude_from_export?, :exclude_from_view?, :repetition?, 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(:row, 'types_de_champ.order_place') }
scope :root, -> { where(parent_id: nil) }
before_create :set_dossier_id, if: :needs_dossier_id?
2018-02-09 17:38:30 +01:00
def public?
!private?
end
2017-03-29 13:37:07 +02:00
def mandatory_and_blank?
2019-02-19 12:38:33 +01:00
mandatory? && blank?
end
def blank?
case type_de_champ.type_champ
when TypeDeChamp.type_champs.fetch(:carte)
value.blank? || value == '[]'
else
2019-02-19 12:38:33 +01:00
value.blank?
end
2017-03-29 13:37:07 +02:00
end
def search_terms
[to_s]
end
def to_s
2018-12-28 15:44:54 +01:00
value.present? ? value.to_s : ''
end
def for_export
2018-12-28 15:44:54 +01:00
value.presence
end
2018-12-28 17:59:14 +01:00
def for_api
value
end
def for_api_v2
to_s
end
def for_tag
value.present? ? value.to_s : ''
end
def main_value_name
:value
end
def to_typed_id
type_de_champ.to_typed_id
end
private
def needs_dossier_id?
!dossier_id && parent_id
end
def set_dossier_id
self.dossier_id = parent.dossier_id
end
2015-11-03 10:48:40 +01:00
end