-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18e8c88
commit d0c6920
Showing
7 changed files
with
109 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 14 additions & 13 deletions
27
.../business-central-complete-export-log/business-central-complete-export-log.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,43 @@ | ||
<div *ngIf="isLoading" class="tw-flex tw-justify-center tw-items-center tw-h-screen"> | ||
<div *ngIf="!accountingExports" class="tw-flex tw-justify-center tw-items-center tw-h-screen"> | ||
<app-loader></app-loader> | ||
</div> | ||
|
||
<div *ngIf="!isLoading" class="tw-rounded-8-px tw-shadow-app-card tw-bg-white tw-border-1-px tw-border-separator"> | ||
<div class="tw-rounded-8-px tw-shadow-app-card tw-bg-white tw-border-1-px tw-border-separator"> | ||
<div> | ||
<app-export-log-filter *ngIf="totalCount > 0 || selectedDateFilter" | ||
<app-export-log-filter *ngIf="totalCount > 0 || (isDateSelected || searchQuery)" | ||
[exportLogForm]="exportLogForm" | ||
[dateOptions]="dateOptions" | ||
(handleSimpleSearch)="handleSimpleSearch($event)"> | ||
</app-export-log-filter> | ||
|
||
<app-export-log-table | ||
<app-export-log-table | ||
*ngIf="!isLoading" | ||
[filteredExpenseGroups]="filteredAccountingExports" | ||
[appName]="appName" | ||
[isExportLogTable]="true" | ||
[isDashboardFailed]="false"> | ||
</app-export-log-table> | ||
|
||
<div *ngIf="filteredAccountingExports.length > 0" class="tw-p-24-px tw-border-t-1-px"> | ||
<app-paginator | ||
[dropDownValue]="limit" | ||
[page]="currentPage" | ||
[totalCount]="totalCount" | ||
(pageSizeChangeEvent)="pageSizeChanges($event)" | ||
<div *ngIf="totalCount > 0 && !isLoading" class="tw-p-24-px tw-border-t-1-px"> | ||
<app-paginator | ||
[dropDownValue]="limit" | ||
[page]="currentPage" | ||
[totalCount]="totalCount" | ||
(pageSizeChangeEvent)="pageSizeChanges($event)" | ||
(pageOffsetChangeEvent)="pageChanges($event)"> | ||
</app-paginator> | ||
</div> | ||
|
||
<app-zero-state-with-illustration *ngIf="!filteredAccountingExports.length && !selectedDateFilter && totalCount > 0" | ||
<app-zero-state-with-illustration *ngIf="(isDateSelected || searchQuery) && totalCount === 0 && !isLoading" | ||
[mainText]="'Sorry, no results found!'" | ||
[subText]="'We could not find what you were looking for. Kindly check the keywords again.'"> | ||
</app-zero-state-with-illustration> | ||
|
||
</div> | ||
|
||
<app-zero-state-with-illustration *ngIf="totalCount === 0" | ||
<app-zero-state-with-illustration *ngIf="totalCount === 0 && (!isDateSelected && !searchQuery) && !isLoading" | ||
[mainText]="'No records to show yet!'" | ||
[subText]="'All your successful exports and their details will be stored here.'"> | ||
</app-zero-state-with-illustration> | ||
|
||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 12 additions & 12 deletions
24
...og/business-central-skipped-export-log/business-central-skipped-export-log.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 12 additions & 12 deletions
24
...n/sage300-export-log/sage300-skipped-export-log/sage300-skipped-export-log.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters