feat(reports): reports module + /inicio + edo-cuenta-datos prefill
- New reports backend (registry, service, controller, outputs, types) with catalog endpoint + slug/CSV/XLSX/PDF/print outputs. - /reportes catalog + /reportes/[slug] runner; ReportRunner + ContextReports components wire pre-filtered links from domain pages. - Fix: /reportes/[slug] now reads searchParams and forwards initialParams to ReportRunner so /reportes/edo-cuenta-datos?customerId=... auto-runs instead of dropping the id and forcing a manual customer search. - /inicio landing page; root + login redirect to /inicio. - Company header env vars + logo asset for PDF/print rendering. - exceljs + pdfkit deps.
This commit is contained in:
@@ -2205,3 +2205,488 @@ button {
|
||||
padding: 20px;
|
||||
z-index: 50;
|
||||
}
|
||||
|
||||
/* ============================================================================
|
||||
Home dashboard (/inicio)
|
||||
========================================================================== */
|
||||
.home {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 36px;
|
||||
padding-top: 8px;
|
||||
}
|
||||
.home-last-seen {
|
||||
margin-top: 14px;
|
||||
font-size: 13px;
|
||||
}
|
||||
.home-section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 14px;
|
||||
}
|
||||
.section-head {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.section-title {
|
||||
font-family: var(--font-display);
|
||||
font-size: 20px;
|
||||
font-weight: 560;
|
||||
margin: 0;
|
||||
color: var(--ink);
|
||||
letter-spacing: -0.005em;
|
||||
}
|
||||
.section-sub {
|
||||
font-size: 12.5px;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
/* KPI cards row — 4 across on wide screens, 2 on tablet, 1 on mobile */
|
||||
.home-section.kpi-row {
|
||||
display: grid;
|
||||
}
|
||||
.home > .home-section:first-of-type {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 14px;
|
||||
}
|
||||
@media (max-width: 1080px) {
|
||||
.home > .home-section:first-of-type {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
@media (max-width: 560px) {
|
||||
.home > .home-section:first-of-type {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
.kpi-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 18px 18px 16px;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
transition: transform 0.18s var(--ease-out-expo), box-shadow 0.18s;
|
||||
position: relative;
|
||||
}
|
||||
.kpi-card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
.kpi-label {
|
||||
font-size: 11.5px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
color: var(--muted);
|
||||
font-weight: 700;
|
||||
}
|
||||
.kpi-primary {
|
||||
font-family: var(--font-display);
|
||||
font-size: 32px;
|
||||
font-weight: 560;
|
||||
color: var(--ink);
|
||||
margin-top: 8px;
|
||||
font-feature-settings: "tnum" 1;
|
||||
letter-spacing: -0.015em;
|
||||
line-height: 1.1;
|
||||
min-height: 36px;
|
||||
}
|
||||
.kpi-sub {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 12px 0 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
font-size: 12.5px;
|
||||
color: var(--ink-soft);
|
||||
}
|
||||
.kpi-sub li {
|
||||
line-height: 1.35;
|
||||
}
|
||||
.kpi-cta {
|
||||
margin-top: 14px;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
color: var(--brand-700);
|
||||
letter-spacing: 0.02em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.kpi-card:hover .kpi-cta {
|
||||
color: var(--brand-800);
|
||||
}
|
||||
|
||||
/* Attention grid — auto-fill so the row of cards stays balanced */
|
||||
.attention-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
||||
gap: 14px;
|
||||
}
|
||||
.attention-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
padding: 16px 18px 18px;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
border-left: 3px solid var(--line-strong);
|
||||
transition: transform 0.18s var(--ease-out-expo), box-shadow 0.18s;
|
||||
position: relative;
|
||||
}
|
||||
.attention-card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
.attention-card.tone-warn {
|
||||
border-left-color: var(--seguros);
|
||||
}
|
||||
.attention-card.tone-info {
|
||||
border-left-color: var(--brand-600);
|
||||
}
|
||||
.attention-card.tone-muted {
|
||||
border-left-color: var(--muted-2);
|
||||
}
|
||||
.attention-head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 10px;
|
||||
}
|
||||
.attention-title {
|
||||
font-size: 12px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
color: var(--muted);
|
||||
font-weight: 700;
|
||||
}
|
||||
.attention-arrow {
|
||||
color: var(--muted-2);
|
||||
font-size: 14px;
|
||||
transition: transform 0.18s var(--ease-out-expo), color 0.18s;
|
||||
}
|
||||
.attention-card:hover .attention-arrow {
|
||||
color: var(--brand-700);
|
||||
transform: translateX(3px);
|
||||
}
|
||||
.attention-primary {
|
||||
font-family: var(--font-display);
|
||||
font-size: 26px;
|
||||
font-weight: 560;
|
||||
color: var(--ink);
|
||||
font-feature-settings: "tnum" 1;
|
||||
letter-spacing: -0.01em;
|
||||
line-height: 1.1;
|
||||
min-height: 30px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
.attention-sub {
|
||||
font-size: 12.5px;
|
||||
color: var(--ink-soft);
|
||||
line-height: 1.4;
|
||||
}
|
||||
.attention-meta {
|
||||
font-size: 11.5px;
|
||||
color: var(--muted);
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
/* Currency totals inside an attention card */
|
||||
.home-currency-totals {
|
||||
display: inline-flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px 14px;
|
||||
align-items: baseline;
|
||||
}
|
||||
.home-currency-totals-row {
|
||||
display: inline-flex;
|
||||
align-items: baseline;
|
||||
gap: 6px;
|
||||
}
|
||||
.home-currency-totals-num {
|
||||
font-family: var(--font-display);
|
||||
font-feature-settings: "tnum" 1;
|
||||
font-size: 20px;
|
||||
font-weight: 560;
|
||||
}
|
||||
|
||||
/* Quick links row */
|
||||
.quick-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
|
||||
gap: 12px;
|
||||
}
|
||||
.quick-link {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
position: relative;
|
||||
transition: transform 0.18s var(--ease-out-expo), box-shadow 0.18s;
|
||||
}
|
||||
.quick-link:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
.quick-label {
|
||||
font-family: var(--font-display);
|
||||
font-size: 17px;
|
||||
font-weight: 560;
|
||||
color: var(--ink);
|
||||
}
|
||||
.quick-sub {
|
||||
font-size: 12px;
|
||||
color: var(--muted);
|
||||
margin-top: 2px;
|
||||
}
|
||||
.quick-arrow {
|
||||
position: absolute;
|
||||
top: 14px;
|
||||
right: 16px;
|
||||
color: var(--muted-2);
|
||||
font-size: 14px;
|
||||
transition: transform 0.18s var(--ease-out-expo), color 0.18s;
|
||||
}
|
||||
.quick-link:hover .quick-arrow {
|
||||
color: var(--brand-700);
|
||||
transform: translateX(3px);
|
||||
}
|
||||
|
||||
/* Money tone helpers (used in chequera card) */
|
||||
.money-pos { color: var(--positive); }
|
||||
.money-neg { color: var(--negative); }
|
||||
|
||||
/* ============================================================================
|
||||
Reports module
|
||||
========================================================================== */
|
||||
|
||||
.report-catalog {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 28px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.report-catalog-group {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
.report-catalog-title {
|
||||
font-family: var(--font-display);
|
||||
font-weight: 500;
|
||||
font-size: 20px;
|
||||
color: var(--brand-800);
|
||||
margin: 0;
|
||||
padding-bottom: 6px;
|
||||
border-bottom: 1px solid var(--line);
|
||||
}
|
||||
.report-catalog-list {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
||||
gap: 12px;
|
||||
}
|
||||
.report-catalog-item {
|
||||
margin: 0;
|
||||
}
|
||||
.report-catalog-link {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
padding: 14px 16px;
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 8px;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
transition: border-color 0.18s, transform 0.18s var(--ease-out-expo);
|
||||
}
|
||||
.report-catalog-link:hover {
|
||||
border-color: var(--brand-500);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
.report-catalog-item-title {
|
||||
font-weight: 600;
|
||||
font-size: 15px;
|
||||
color: var(--ink);
|
||||
}
|
||||
.report-catalog-item-desc {
|
||||
font-size: 13px;
|
||||
color: var(--muted);
|
||||
line-height: 1.4;
|
||||
}
|
||||
.report-catalog-item-meta {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
margin-top: 4px;
|
||||
}
|
||||
.report-catalog-tag {
|
||||
font-size: 11px;
|
||||
background: var(--brand-tint);
|
||||
color: var(--brand-800);
|
||||
padding: 2px 8px;
|
||||
border-radius: 999px;
|
||||
font-family: var(--font-mono);
|
||||
}
|
||||
.report-catalog-tag.muted {
|
||||
background: var(--paper-2);
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
/* Runner */
|
||||
.report-runner {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.report-filters {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
align-items: flex-end;
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 8px;
|
||||
padding: 14px 16px;
|
||||
}
|
||||
.report-filters-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-left: auto;
|
||||
}
|
||||
.report-error {
|
||||
background: #fbeae3;
|
||||
color: var(--negative);
|
||||
border: 1px solid #e6b6a4;
|
||||
border-radius: 6px;
|
||||
padding: 10px 14px;
|
||||
font-size: 13px;
|
||||
}
|
||||
.report-loading {
|
||||
font-size: 12px;
|
||||
color: var(--muted);
|
||||
padding: 4px 0;
|
||||
}
|
||||
.report-result {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
}
|
||||
.report-result-head {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
gap: 16px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.report-result-meta {
|
||||
flex: 1;
|
||||
min-width: 200px;
|
||||
}
|
||||
.report-output-buttons {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
}
|
||||
.btn-sm {
|
||||
padding: 4px 10px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.report-table-wrap {
|
||||
overflow-x: auto;
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 8px;
|
||||
}
|
||||
.report-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 13px;
|
||||
}
|
||||
.report-table th,
|
||||
.report-table td {
|
||||
padding: 8px 12px;
|
||||
border-bottom: 1px solid var(--line);
|
||||
}
|
||||
.report-table th {
|
||||
background: var(--paper-2);
|
||||
color: var(--ink-soft);
|
||||
font-weight: 600;
|
||||
text-align: left;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
.report-table tbody tr:hover {
|
||||
background: var(--paper-2);
|
||||
}
|
||||
.report-totals {
|
||||
background: var(--accent);
|
||||
color: #f5f1e8;
|
||||
font-weight: 600;
|
||||
padding: 10px 14px;
|
||||
}
|
||||
.statement {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
}
|
||||
.statement-head {
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 8px;
|
||||
padding: 16px 18px;
|
||||
}
|
||||
.statement-name {
|
||||
font-family: var(--font-display);
|
||||
font-size: 22px;
|
||||
font-weight: 600;
|
||||
color: var(--ink);
|
||||
margin: 0 0 4px;
|
||||
}
|
||||
.statement-section-title {
|
||||
font-family: var(--font-display);
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
color: var(--brand-800);
|
||||
margin: 0 0 8px;
|
||||
}
|
||||
|
||||
/* Context buttons (the inline shortcut on existing pages) */
|
||||
.context-reports {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
align-items: center;
|
||||
margin-left: auto;
|
||||
}
|
||||
.context-reports-label {
|
||||
font-size: 11px;
|
||||
color: var(--muted-2);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
margin-right: 4px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.context-report-link {
|
||||
font-size: 12px;
|
||||
padding: 4px 10px;
|
||||
border: 1px solid var(--line);
|
||||
background: var(--surface);
|
||||
color: var(--ink);
|
||||
border-radius: 999px;
|
||||
text-decoration: none;
|
||||
transition: border-color 0.15s, color 0.15s;
|
||||
}
|
||||
.context-report-link:hover {
|
||||
border-color: var(--brand-500);
|
||||
color: var(--brand-700);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user