Merge pull request #10091 from tchak/fix-apply_diff
fix(dossier): safely remove child champs in apply_diff
This commit is contained in:
commit
256d63e5f3
1 changed files with 7 additions and 6 deletions
|
@ -167,9 +167,10 @@ module DossierCloneConcern
|
||||||
end
|
end
|
||||||
|
|
||||||
champs_to_remove += diff[:removed]
|
champs_to_remove += diff[:removed]
|
||||||
champs_to_remove
|
children_champs_to_remove, root_champs_to_remove = champs_to_remove.partition(&:child?)
|
||||||
.filter { !_1.child? || !champs_to_remove.include?(_1.parent) }
|
|
||||||
.each do |champ|
|
children_champs_to_remove.each(&:destroy!)
|
||||||
|
root_champs_to_remove.each do |champ|
|
||||||
champ.rows.flatten.each(&:destroy!) if champ.repetition?
|
champ.rows.flatten.each(&:destroy!) if champ.repetition?
|
||||||
champ.destroy!
|
champ.destroy!
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue