Skip to content

Commit

Permalink
Merge pull request #9299 from tchak/feat-refresh-champ
Browse files Browse the repository at this point in the history
feat(dossier): enable refresh after update on more champs
  • Loading branch information
tchak authored Jul 11, 2023
2 parents 543eee5 + b14fbe7 commit d9cefb4
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions app/models/type_de_champ.rb
Original file line number Diff line number Diff line change
Expand Up @@ -566,18 +566,19 @@ def refresh_after_update?
end

def self.refresh_after_update?(type_champ)
# We should refresh all champs after update except for champs using react or custom refresh
# logic (RNA, SIRET, etc.)
case type_champ
when type_champs.fetch(:epci),
type_champs.fetch(:communes),
type_champs.fetch(:multiple_drop_down_list),
type_champs.fetch(:dossier_link),
type_champs.fetch(:linked_drop_down_list),
type_champs.fetch(:drop_down_list),
type_champs.fetch(:textarea),
type_champs.fetch(:cojo)
true
else
when type_champs.fetch(:address),
type_champs.fetch(:annuaire_education),
type_champs.fetch(:carte),
type_champs.fetch(:piece_justificative),
type_champs.fetch(:titre_identite),
type_champs.fetch(:rna),
type_champs.fetch(:siret)
false
else
true
end
end

Expand Down

0 comments on commit d9cefb4

Please sign in to comment.