feat: init module report

pull/7/head
Firman Ramdhani 2024-07-02 16:42:16 +07:00
parent 8db2256852
commit e51e5a51a1
4 changed files with 39 additions and 0 deletions

View File

@ -43,6 +43,12 @@ import { ItemRateModule } from './modules/item-related/item-rate/item-rate.modul
import { ItemRateModel } from './modules/item-related/item-rate/data/models/item-rate.model';
import { GoogleCalendarModule } from './modules/configuration/google-calendar/google-calendar.module';
import { ReportModule } from './modules/reports/report/report.module';
import { ReportBookmarkModule } from './modules/reports/report-bookmark/report-bookmark.module';
import { ReportExportModule } from './modules/reports/report-export/report-export.module';
import { ReportBookmarkModel } from './modules/reports/shared/models/report-bookmark.model';
import { ExportReportHistoryModel } from './modules/reports/shared/models/export-report-history.model';
@Module({
imports: [
ApmModule.register(),
@ -72,6 +78,10 @@ import { GoogleCalendarModule } from './modules/configuration/google-calendar/go
UserModel,
VipCategoryModel,
VipCodeModel,
// report
ReportBookmarkModel,
ExportReportHistoryModel,
],
synchronize: false,
}),
@ -104,6 +114,11 @@ import { GoogleCalendarModule } from './modules/configuration/google-calendar/go
// session
SeasonTypeModule,
SeasonPeriodModule,
// report
ReportModule,
ReportBookmarkModule,
ReportExportModule,
],
controllers: [],
providers: [

View File

@ -0,0 +1,8 @@
import { Module } from '@nestjs/common';
@Module({
imports: [],
controllers: [],
providers: [],
})
export class ReportBookmarkModule {}

View File

@ -0,0 +1,8 @@
import { Module } from '@nestjs/common';
@Module({
imports: [],
controllers: [],
providers: [],
})
export class ReportExportModule {}

View File

@ -0,0 +1,8 @@
import { Module } from '@nestjs/common';
@Module({
imports: [],
controllers: [],
providers: [],
})
export class ReportModule {}