2020-08-05 18:40:47 +02:00
|
|
|
class APIEntreprise::EffectifsJob < APIEntreprise::Job
|
2020-05-14 10:56:26 +02:00
|
|
|
def perform(etablissement_id, procedure_id)
|
2021-02-04 19:27:16 +01:00
|
|
|
find_etablissement(etablissement_id)
|
2020-06-24 10:07:47 +02:00
|
|
|
# may 2020 is at the moment the most actual info for effectifs endpoint
|
2020-08-05 18:40:47 +02:00
|
|
|
etablissement_params = APIEntreprise::EffectifsAdapter.new(etablissement.siret, procedure_id, "2020", "05").to_params
|
2020-05-14 10:56:26 +02:00
|
|
|
etablissement.update!(etablissement_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def get_current_valid_month_for_effectif
|
|
|
|
today = Date.today
|
|
|
|
date_update = Date.new(today.year, today.month, 15)
|
|
|
|
|
|
|
|
if today >= date_update
|
|
|
|
[today.strftime("%Y"), today.strftime("%m")]
|
|
|
|
else
|
|
|
|
date = today - 1.month
|
|
|
|
[date.strftime("%Y"), date.strftime("%m")]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|