[#1037] Introduce format-date function

This commit is contained in:
Frederic Merizen 2018-01-09 11:10:56 +01:00
parent fff6019858
commit 935a38bde0

View file

@ -34,12 +34,20 @@ module TagsSubstitutionConcern
dossier_termine_only: true },
{ libelle: 'date de décision',
description: 'Date de la décision dacceptation, refus, ou classement sans suite',
lambda: -> (d) { d.processed_at.present? ? d.processed_at.localtime.strftime('%d/%m/%Y') : '' },
lambda: -> (d) { format_date(d.processed_at) },
dossier_termine_only: true },
{ libelle: 'libellé procédure', description: '', lambda: -> (d) { d.procedure.libelle } },
{ libelle: 'numéro du dossier', description: '', target: :id }]
end
def format_date(date)
if date.present?
date.localtime.strftime('%d/%m/%Y')
else
''
end
end
def individual_tags
[{ libelle: 'civilité', description: 'M., Mme', target: :gender },
{ libelle: 'nom', description: "nom de l'usager", target: :nom },