Muluhabt ERP modules

This commit is contained in:
Mulu Mehari
2026-08-25 00:11:39 +03:00
parent 5c2100e76d
commit 70171fa9d8
441 changed files with 68587 additions and 214 deletions

View File

@@ -0,0 +1,17 @@
import { Module } from "@nestjs/common";
import { ReportsService } from "./reports.service";
import { ReportsController } from "./reports.controller";
/**
* No `TypeOrmModule.forFeature` — every report is raw SQL over the DataSource,
* the sanctioned approach for cross-table aggregates and the one HR's 3.7
* reports use. There are no entities to register because there is nothing to
* write: this module is read-only end to end.
*/
@Module({
controllers: [ReportsController],
providers: [ReportsService],
exports: [ReportsService],
})
export class ReportsModule {}