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
|
2022-12-01 12:00:21 +01:00
|
|
|
|
# prefilled :boolean default(FALSE)
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# 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
|
|
|
|
# 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
|
2022-09-21 15:20:42 +02:00
|
|
|
|
# dossier_id :integer
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# etablissement_id :integer
|
|
|
|
|
# external_id :string
|
|
|
|
|
# parent_id :bigint
|
2022-12-16 12:39:51 +01:00
|
|
|
|
# row_id :string
|
2022-09-21 15:20:42 +02:00
|
|
|
|
# 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
|
2023-04-11 13:53:59 +02:00
|
|
|
|
def level
|
|
|
|
|
if parent.present?
|
2023-04-25 12:00:42 +02:00
|
|
|
|
header_section_level_value.to_i + parent.current_section_level(dossier.revision)
|
2023-04-11 13:53:59 +02:00
|
|
|
|
elsif header_section_level_value
|
|
|
|
|
header_section_level_value.to_i
|
|
|
|
|
else
|
|
|
|
|
0
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
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?
|
|
|
|
|
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
|