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
|
2018-02-13 18:18:20 +01:00
|
|
|
|
end
|