- 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.
10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
import { Module } from "@nestjs/common";
|
|
import { ReportsController } from "./reports.controller";
|
|
import { ReportsService } from "./reports.service";
|
|
|
|
@Module({
|
|
controllers: [ReportsController],
|
|
providers: [ReportsService],
|
|
})
|
|
export class ReportsModule {}
|