chore(task): run commune code fix on all champs of a procedure
This commit is contained in:
parent
ed2f615f2b
commit
704cd60e04
1 changed files with 4 additions and 3 deletions
|
@ -2,11 +2,12 @@
|
|||
|
||||
module Maintenance
|
||||
class BackfillCommuneCodeFromNameTask < MaintenanceTasks::Task
|
||||
attribute :champ_ids, :string
|
||||
validates :champ_ids, presence: true
|
||||
attribute :procedure_id, :string
|
||||
validates :procedure_id, presence: true
|
||||
|
||||
def collection
|
||||
Champ.where(id: champ_ids.split(',').map(&:strip).map(&:to_i))
|
||||
procedure = Procedure.find(procedure_id.strip.to_i)
|
||||
Champs::CommuneChamp.where(dossier_id: procedure.dossiers.not_brouillon)
|
||||
end
|
||||
|
||||
def process(champ)
|
||||
|
|
Loading…
Reference in a new issue