fix(commune): a commune can not be located in 99

This commit is contained in:
Paul Chavard 2023-06-15 18:57:50 +01:00
parent f4e33c068b
commit c2ae3426cd
2 changed files with 15 additions and 1 deletions

View file

@ -5,7 +5,7 @@ class Migrations::NormalizeCommunesJob < ApplicationJob
value_json = champ.value_json || {}
if !champ.departement? || champ.code_departement == 'undefined'
if !champ.departement? || champ.code_departement == 'undefined' || champ.code_departement == '99'
metro_code = champ.external_id[0..1]
drom_com_code = champ.external_id[0..2]

View file

@ -0,0 +1,14 @@
namespace :after_party do
desc 'Deployment task: fix_champs_communes_99'
task fix_champs_communes_99: :environment do
puts "Running deploy task 'fix_champs_communes_99'"
champ_ids = Champs::CommuneChamp.where("value_json->>'code_departement' = ?", '99').ids
Migrations::NormalizeCommunesJob.perform_later(champ_ids)
# Update task as completed. If you remove the line below, the task will
# run with every deploy (or every time you call after_party:run).
AfterParty::TaskRecord
.create version: AfterParty::TaskRecorder.new(__FILE__).timestamp
end
end