refactor: financial reports to nestjs

This commit is contained in:
Ahmed Bouhuolia
2025-01-16 12:58:45 +02:00
parent 520d053b36
commit 6dd854178d
91 changed files with 9489 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { Module } from '@nestjs/common';
import { TableSheetPdf } from './TableSheetPdf';
import { PurchasesByItemsModule } from './modules/PurchasesByItems/PurchasesByItems.module';
@Module({
providers: [TableSheetPdf],
imports: [PurchasesByItemsModule],
})
export class FinancialStatementsModule {}