diff --git a/src/app/components/header/header.html b/src/app/components/header/header.html index 6eeb294..de06fe3 100644 --- a/src/app/components/header/header.html +++ b/src/app/components/header/header.html @@ -56,8 +56,12 @@ {{ n.linha || '-' }} +
+ {{ n.linha || '-' }} - {{ n.usuario || n.cliente || '-' }} +
Linha: {{ n.linha || '-' }}
+
Usuário: {{ n.usuario || '-' }}
Cliente: {{ n.cliente || '-' }}
{{ n.tipo === 'Vencido' ? 'Venceu em' : 'Vence em' }}: {{ n.referenciaData ? (n.referenciaData | date:'dd/MM/yyyy') : '-' }}
diff --git a/src/app/pages/notificacoes/notificacoes.html b/src/app/pages/notificacoes/notificacoes.html index 9bddcb7..74013a9 100644 --- a/src/app/pages/notificacoes/notificacoes.html +++ b/src/app/pages/notificacoes/notificacoes.html @@ -52,8 +52,13 @@ {{ n.linha || '-' }} +
+ {{ n.linha || '-' }} - {{ n.usuario || n.cliente || '-' }} +
+
Linha: {{ n.linha || '-' }}
+
Usuário: {{ n.usuario || '-' }}
Cliente: {{ n.cliente || '-' }}
{{ n.tipo === 'Vencido' ? 'Venceu em' : 'Vence em' }}: {{ n.referenciaData ? (n.referenciaData | date:'dd/MM/yyyy') : '-' }}
diff --git a/src/app/pages/notificacoes/notificacoes.scss b/src/app/pages/notificacoes/notificacoes.scss index b5d7fda..7381235 100644 --- a/src/app/pages/notificacoes/notificacoes.scss +++ b/src/app/pages/notificacoes/notificacoes.scss @@ -119,6 +119,12 @@ } } +.card-title { + margin-top: 10px; + font-weight: 800; + color: rgba(17, 18, 20, 0.92); +} + .card-head { display: flex; align-items: center; diff --git a/src/app/services/notifications.service.ts b/src/app/services/notifications.service.ts index 2852737..07e16e8 100644 --- a/src/app/services/notifications.service.ts +++ b/src/app/services/notifications.service.ts @@ -19,6 +19,7 @@ export type NotificationDto = { vigenciaLineId?: string | null; cliente?: string | null; linha?: string | null; + usuario?: string | null; }; @Injectable({ providedIn: 'root' })