2020-08-06 16:35:45 +02:00
|
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: champs
|
|
|
|
|
#
|
|
|
|
|
# id :integer not null, primary key
|
2021-01-13 18:57:10 +01:00
|
|
|
|
# data :jsonb
|
2020-08-06 16:35:45 +02:00
|
|
|
|
# private :boolean default(FALSE), not null
|
|
|
|
|
# row :integer
|
|
|
|
|
# type :string
|
|
|
|
|
# value :string
|
|
|
|
|
# created_at :datetime
|
|
|
|
|
# updated_at :datetime
|
|
|
|
|
# dossier_id :integer
|
|
|
|
|
# etablissement_id :integer
|
2021-01-14 23:53:02 +01:00
|
|
|
|
# external_id :string
|
2020-08-06 16:35:45 +02:00
|
|
|
|
# parent_id :bigint
|
|
|
|
|
# type_de_champ_id :integer
|
|
|
|
|
#
|
2018-12-18 11:17:52 +01:00
|
|
|
|
class Champs::RepetitionChamp < Champ
|
|
|
|
|
accepts_nested_attributes_for :champs, allow_destroy: true
|
|
|
|
|
|
|
|
|
|
def rows
|
|
|
|
|
champs.group_by(&:row).values
|
|
|
|
|
end
|
|
|
|
|
|
2019-01-30 16:14:15 +01:00
|
|
|
|
def add_row(row = 0)
|
|
|
|
|
type_de_champ.types_de_champ.each do |type_de_champ|
|
|
|
|
|
self.champs << type_de_champ.champ.build(row: row)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def mandatory_and_blank?
|
|
|
|
|
mandatory? && champs.empty?
|
|
|
|
|
end
|
|
|
|
|
|
2018-12-18 11:17:52 +01:00
|
|
|
|
def search_terms
|
|
|
|
|
# The user cannot enter any information here so it doesn’t make much sense to search
|
|
|
|
|
end
|
2019-04-03 14:29:30 +02:00
|
|
|
|
|
2019-09-11 16:04:42 +02:00
|
|
|
|
def for_tag
|
|
|
|
|
([libelle] + rows.map do |champs|
|
|
|
|
|
champs.map do |champ|
|
|
|
|
|
"#{champ.libelle} : #{champ}"
|
|
|
|
|
end.join("\n")
|
|
|
|
|
end).join("\n\n")
|
|
|
|
|
end
|
|
|
|
|
|
2019-07-11 10:28:44 +02:00
|
|
|
|
def rows_for_export
|
|
|
|
|
rows.each.with_index(1).map do |champs, index|
|
|
|
|
|
Champs::RepetitionChamp::Row.new(index: index, dossier_id: dossier_id.to_s, champs: champs)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-11-06 17:03:07 +01:00
|
|
|
|
# We have to truncate the label here as spreadsheets have a (30 char) limit on length.
|
|
|
|
|
def libelle_for_export
|
2020-04-30 15:49:31 +02:00
|
|
|
|
str = "(#{stable_id}) #{libelle}"
|
2020-01-29 11:33:28 +01:00
|
|
|
|
# /\*?[] are invalid Excel worksheet characters
|
2020-09-24 14:24:53 +02:00
|
|
|
|
ActiveStorage::Filename.new(str.delete('[]*?')).sanitized
|
2019-11-06 17:03:07 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-04-03 14:29:30 +02:00
|
|
|
|
class Row < Hashie::Dash
|
|
|
|
|
property :index
|
|
|
|
|
property :dossier_id
|
|
|
|
|
property :champs
|
|
|
|
|
|
2019-07-11 10:28:44 +02:00
|
|
|
|
def read_attribute_for_serialization(attribute)
|
|
|
|
|
self[attribute]
|
|
|
|
|
end
|
|
|
|
|
|
2019-04-03 14:29:30 +02:00
|
|
|
|
def spreadsheet_columns
|
|
|
|
|
[
|
|
|
|
|
['Dossier ID', :dossier_id],
|
|
|
|
|
['Ligne', :index]
|
|
|
|
|
] + exported_champs
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
def exported_champs
|
|
|
|
|
champs.reject(&:exclude_from_export?).map do |champ|
|
|
|
|
|
[champ.libelle, champ.for_export]
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-12-18 11:17:52 +01:00
|
|
|
|
end
|