[#1037] Introduce format-date
function
This commit is contained in:
parent
fff6019858
commit
935a38bde0
1 changed files with 9 additions and 1 deletions
|
@ -34,12 +34,20 @@ module TagsSubstitutionConcern
|
|||
dossier_termine_only: true },
|
||||
{ libelle: 'date de décision',
|
||||
description: 'Date de la décision d’acceptation, 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 },
|
||||
|
|
Loading…
Reference in a new issue