GAP-001: KPIs Configurables (5 SP) - kpi-config.service.ts: Full CRUD, dashboard, values - kpi-config.controller.ts: REST endpoints - Updated kpi-config/value entities to reuse existing types GAP-002: Tool Loans (3 SP) - tool-loan.service.ts: CRUD, return, lost, approve operations - tool-loan.controller.ts: REST endpoints GAP-003: Depreciation (5 SP) - depreciation.service.ts: Schedules, entries, calculations - depreciation.controller.ts: REST endpoints Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
290 B
TypeScript
13 lines
290 B
TypeScript
/**
|
|
* Reports Module - Service Exports
|
|
* MAI-006: Reportes y Analytics
|
|
*/
|
|
|
|
export * from './report.service';
|
|
export * from './dashboard.service';
|
|
export * from './kpi.service';
|
|
export * from './earned-value.service';
|
|
|
|
// GAP-001: KPIs Configurables
|
|
export * from './kpi-config.service';
|