Merge pull request #9202 from tchak/fix-99-communes
fix(commune): a commune can not be located in 99
This commit is contained in:
commit
a5b99ddfd9
2 changed files with 15 additions and 1 deletions
|
@ -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]
|
||||
|
||||
|
|
|
@ -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
|
Loading…
Reference in a new issue