fetch and show effectif mensuel

- fetch and store effectif mensuel (at the creation of the dossier or
when updating a siret field

- show effectif mensuel only for instructeurs
This commit is contained in:
Christophe Robillard 2020-04-07 19:29:14 +02:00
parent 599d8e33e8
commit db3ef195ad
8 changed files with 72 additions and 3 deletions

View file

@ -130,6 +130,14 @@ module ApplicationHelper
datetime.present? ? I18n.l(datetime) : ''
end
def try_format_mois_effectif(etablissement)
if etablissement.effectif_mois.present? && etablissement.effectif_annee.present?
[etablissement.effectif_mois, etablissement.effectif_annee].join('/')
else
''
end
end
def dismiss_outdated_browser_banner
cookies[:dismissed_outdated_browser_banner] = {
value: 'true',