Allow prefill pays type de champs (#8344)
* Allow prefill pays type de champs * Avoid conditional prefil params for pays champ * Clean pays data with batch update * Fix bug and add test batch update pays value * Improve performance batch_update_pays * Fix associated country code problem * Fix after party task name * Format country name if needed in batch update
This commit is contained in:
parent
eea2912ae5
commit
3a8a50a216
19 changed files with 203 additions and 34 deletions
|
@ -0,0 +1,16 @@
|
|||
namespace :after_party do
|
||||
desc 'Deployment task: normalize_pays_values'
|
||||
task normalize_pays_values: :environment do
|
||||
puts "Running deploy task 'normalize_pays_values'"
|
||||
|
||||
# Put your task implementation HERE.
|
||||
Champs::PaysChamp.in_batches do |pays_champs|
|
||||
Migrations::BatchUpdatePaysValuesJob.perform_later(pays_champs.pluck(:id))
|
||||
end
|
||||
|
||||
# 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…
Add table
Add a link
Reference in a new issue