File tree Expand file tree Collapse file tree 3 files changed +4
-8
lines changed
backend/src/main/java/com/park/utmstack/service/compliance
frontend/src/app/dashboard Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -160,8 +160,7 @@ public void scheduleComplianceReport() {
160160 // Set the next execution time (Base time seed)
161161 current .setLastExecutionTime (next );
162162 utmComplianceReportScheduleRepository .save (current );
163- complianceMailService .sendComplianceByMail (Constants .FRONT_BASE_URL + current .getUrlWithParams (),
164- user .get ().getEmail ());
163+ complianceMailService .sendComplianceByMail (current .getUrlWithParams (), user .get ().getEmail ());
165164 }
166165
167166 } catch (Exception e ) {
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ <h3 class="">{{dashboardName}}</h3>
2727 < h5 class ="mt-5 "> Generated on {{date | date:'short':'UTC'}}</ h5 >
2828 </ div >
2929
30-
30+ < div *ngIf =" !preparingPrint " class =" report-loading " > </ div >
3131 <!-- <img class="img-front-page" src="/assets/img/report/A4_compliance.png">-->
3232 < img [src] ="sanitizer.bypassSecurityTrustUrl(cover) "
3333 *ngIf ="cover;else loadImage "
@@ -40,8 +40,6 @@ <h5 class="mt-5 ">Generated on {{date | date:'short':'UTC'}}</h5>
4040</ div >
4141
4242< div [ngClass] ="printFormat?'vis-container-print':'mt-4' " class ="w-100 ">
43- < span *ngIf ="preparingPrint " class ="text-primary ">
44- < i class ="spinner icon-spinner2 "> </ i > Loading content, please wait</ span >
4543 < div *ngIf ="dashboardDescription != '' " class ="report-desc-container w-100 d-flex justify-content-center align-items-center flex-column ">
4644 < div class ="report-description dashboard-info-container d-flex align-items-start w-100 ">
4745 < p class ="font-size-lg mb-3 "> {{dashboardDescription}}</ p >
@@ -70,7 +68,6 @@ <h5 class="mt-5 ">Generated on {{date | date:'short':'UTC'}}</h5>
7068 </ div >
7169 </ div >
7270
73-
7471 < app-render-visualization-print (visualizationLoaded) ="onVisualizationLoaded() "
7572 [visualizationRender] ="visualizationRender "> </ app-render-visualization-print >
7673</ div >
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ <h5 class="card-title label-header mb-0 text-uppercase label-header">Overview</h
55 < app-elastic-filter-time [invertContent] ="true "
66 [isEmitter] ="true "
77 container ="body "> </ app-elastic-filter-time >
8- < button (click) ="exportToPdf() "
8+ <!--< button (click)="exportToPdf()"
99 [disabled]="pdfExport" class="btn utm-button utm-button-primary ml-2">
1010 <i [ngClass]="pdfExport?'icon-download10':'icon-file-pdf'" class="mr-1"></i>
1111 {{pdfExport ? 'Generating...' : 'Save to PDF'}}
12- </ button >
12+ </button>-->
1313 </ div >
1414 </ div >
1515 < app-utm-report-header *ngIf ="pdfExport " [reportName] ="'UTMSTACK Overview' "> </ app-utm-report-header >
You can’t perform that action at this time.
0 commit comments