diff --git a/app/views/operacoes_dashboard/_painel.html.erb b/app/views/operacoes_dashboard/_painel.html.erb index ebdceef..5040c17 100644 --- a/app/views/operacoes_dashboard/_painel.html.erb +++ b/app/views/operacoes_dashboard/_painel.html.erb @@ -17,26 +17,27 @@ <%# ── KPIs ─────────────────────────────────────────────── %> <% pct_total = ->(parte) { metricas.total.zero? ? 0 : (parte * 100.0 / metricas.total).round(1) } %> - <%# Cards de status empilhados na vertical (orientação da img 13): título discreto - em cima, número grande colorido embaixo. %> -
Total de Entregas
-<%= metricas.total %>
+<%= metricas.total %>
Total de Sucesso
-<%= metricas.sucesso %>
+<%= metricas.sucesso %>
<%= pct_total.(metricas.sucesso) %>% do total
Total de Recusas
-<%= metricas.recusas %>
+<%= metricas.recusas %>
<%= pct_total.(metricas.recusas) %>% do total
Entregas Pendentes
-<%= metricas.pendentes %>
+<%= metricas.pendentes %>
<%= pct_total.(metricas.pendentes) %>% do total