Merge pull request #9202 from tchak/fix-99-communes

fix(commune): a commune can not be located in 99
This commit is contained in:
LeSim 2023-06-16 07:56:16 +00:00 committed by GitHub
commit a5b99ddfd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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