-
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.
Advance export log search for ms-dynamics and sage300 (#674)
* Advance Search for Export log page * Advance search for ms dynamics * linting fix * Resolved comments * removing isLoading
- Loading branch information
1 parent
f8e406a
commit ef58e84
Showing
11 changed files
with
161 additions
and
85 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,4 +42,4 @@ | |
> | ||
</app-dashboard-error-section> | ||
</div> | ||
</div> | ||
</div> |
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,43 +1,44 @@ | ||
<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" | ||
[hideCalendar]="hideCalendar" | ||
[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
27 changes: 14 additions & 13 deletions
27
...sage300-export-log/sage300-complete-export-log/sage300-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,43 +1,44 @@ | ||
<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" | ||
[hideCalendar]="hideCalendar" | ||
[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> |
Oops, something went wrong.