Adapt listing for notifications, according champ or pieces
This commit is contained in:
parent
f0d0bfc427
commit
9788118229
1 changed files with 6 additions and 1 deletions
|
@ -38,11 +38,16 @@
|
||||||
- @facade.dossier.notifications.limit(5).each do |notification|
|
- @facade.dossier.notifications.limit(5).each do |notification|
|
||||||
.notification
|
.notification
|
||||||
.updated-at= notification.updated_at.strftime('%d/%m/%Y %H:%M')
|
.updated-at= notification.updated_at.strftime('%d/%m/%Y %H:%M')
|
||||||
- if ['champs', 'piece_justificative'].include?(notification.type_notif)
|
- if ['champs'].include?(notification.type_notif)
|
||||||
- if notification.liste.size > 1
|
- if notification.liste.size > 1
|
||||||
.type= "Plusieurs attributs ont été changés, dont: #{notification.liste.join(" ")}"
|
.type= "Plusieurs attributs ont été changés, dont: #{notification.liste.join(" ")}"
|
||||||
- else
|
- else
|
||||||
.type= "Un attribut à été changé: #{notification.liste.last}"
|
.type= "Un attribut à été changé: #{notification.liste.last}"
|
||||||
|
- elsif ['piece_justificative'].include?(notification.type_notif)
|
||||||
|
- if notification.liste.size > 1
|
||||||
|
.type= "Plusieurs pièces justificatives ont été changés, dont: #{notification.liste.join(" ")}"
|
||||||
|
- else
|
||||||
|
.type= "Une pièce justificative à été changée: #{notification.liste.last}"
|
||||||
- else
|
- else
|
||||||
.type= notification.liste.last
|
.type= notification.liste.last
|
||||||
.split-hr
|
.split-hr
|
||||||
|
|
Loading…
Reference in a new issue