44 lines
984 B
Ruby
44 lines
984 B
Ruby
class Champs::RepetitionChamp < Champ
|
||
has_many :champs, -> { ordered }, foreign_key: :parent_id, inverse_of: :parent, dependent: :destroy
|
||
|
||
accepts_nested_attributes_for :champs, allow_destroy: true
|
||
|
||
def rows
|
||
champs.group_by(&:row).values
|
||
end
|
||
|
||
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
|
||
|
||
def search_terms
|
||
# The user cannot enter any information here so it doesn’t make much sense to search
|
||
end
|
||
|
||
class Row < Hashie::Dash
|
||
property :index
|
||
property :dossier_id
|
||
property :champs
|
||
|
||
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
|
||
end
|