2020-08-06 16:35:45 +02:00
|
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: champs
|
|
|
|
|
#
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# id :integer not null, primary key
|
|
|
|
|
# data :jsonb
|
|
|
|
|
# fetch_external_data_exceptions :string is an Array
|
|
|
|
|
# private :boolean default(FALSE), not null
|
2021-10-20 17:26:09 +02:00
|
|
|
|
# rebased_at :datetime
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# row :integer
|
|
|
|
|
# type :string
|
|
|
|
|
# value :string
|
2021-10-05 15:37:13 +02:00
|
|
|
|
# value_json :jsonb
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# created_at :datetime
|
|
|
|
|
# updated_at :datetime
|
|
|
|
|
# dossier_id :integer
|
|
|
|
|
# etablissement_id :integer
|
|
|
|
|
# external_id :string
|
|
|
|
|
# parent_id :bigint
|
|
|
|
|
# type_de_champ_id :integer
|
2020-08-06 16:35:45 +02:00
|
|
|
|
#
|
2018-02-13 18:18:20 +01:00
|
|
|
|
class Champs::HeaderSectionChamp < Champ
|
2018-07-25 19:34:06 +02:00
|
|
|
|
def search_terms
|
|
|
|
|
# The user cannot enter any information here so it doesn’t make much sense to search
|
|
|
|
|
end
|
2020-02-13 11:07:10 +01:00
|
|
|
|
|
2021-04-02 19:19:56 +02:00
|
|
|
|
def libelle_with_section_index
|
2021-04-06 19:15:29 +02:00
|
|
|
|
if sections&.none?(&:libelle_with_section_index?)
|
2021-04-02 19:19:56 +02:00
|
|
|
|
"#{section_index}. #{libelle}"
|
2021-04-06 11:06:24 +02:00
|
|
|
|
else
|
|
|
|
|
libelle
|
2021-04-02 19:19:56 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def libelle_with_section_index?
|
|
|
|
|
libelle =~ /^\d/
|
|
|
|
|
end
|
|
|
|
|
|
2020-02-13 11:07:10 +01:00
|
|
|
|
def section_index
|
2021-04-06 11:06:24 +02:00
|
|
|
|
sections.index(self) + 1
|
2020-02-13 11:07:10 +01:00
|
|
|
|
end
|
2018-02-13 18:18:20 +01:00
|
|
|
|
end
|