From 5b825b6a9a5811e5e1462321ae0d4799fb0197d2 Mon Sep 17 00:00:00 2001
From: Eduardo Lopes <155753879+eduardolopesx03@users.noreply.github.com>
Date: Thu, 22 Jan 2026 17:07:11 -0300
Subject: [PATCH] =?UTF-8?q?Exibe=20t=C3=ADtulo=20linha-usu=C3=A1rio=20nas?=
=?UTF-8?q?=20notifica=C3=A7=C3=B5es?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/app/components/header/header.html | 4 ++++
src/app/pages/notificacoes/notificacoes.html | 5 +++++
src/app/pages/notificacoes/notificacoes.scss | 6 ++++++
src/app/services/notifications.service.ts | 1 +
4 files changed, 16 insertions(+)
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' })