Skip to content

Commit afebb0e

Browse files
alberto-art3chadamsaghy
authored andcommitted
WEB-657: Working Capital loan account details enhanced
1 parent d89dfdb commit afebb0e

772 files changed

Lines changed: 10726 additions & 7741 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/app/account-transfers/create-standing-instructions/create-standing-instructions.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
/** Angular Imports */
10-
import { Component, OnInit, inject } from '@angular/core';
10+
import { ChangeDetectionStrategy, Component, OnInit, inject } from '@angular/core';
1111
import { ActivatedRoute, Router, RouterLink } from '@angular/router';
1212
import { UntypedFormBuilder, UntypedFormGroup, Validators, FormControl, ReactiveFormsModule } from '@angular/forms';
1313

@@ -26,7 +26,8 @@ import { STANDALONE_SHARED_IMPORTS } from 'app/standalone-shared.module';
2626
styleUrls: ['./create-standing-instructions.component.scss'],
2727
imports: [
2828
...STANDALONE_SHARED_IMPORTS
29-
]
29+
],
30+
changeDetection: ChangeDetectionStrategy.OnPush
3031
})
3132
export class CreateStandingInstructionsComponent implements OnInit {
3233
private formBuilder = inject(UntypedFormBuilder);

src/app/account-transfers/edit-standing-instructions/edit-standing-instructions.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
/** Angular Imports */
10-
import { Component, OnInit, inject } from '@angular/core';
10+
import { ChangeDetectionStrategy, Component, OnInit, inject } from '@angular/core';
1111
import { ActivatedRoute, Router, RouterLink } from '@angular/router';
1212
import { UntypedFormBuilder, UntypedFormGroup, Validators, FormControl, ReactiveFormsModule } from '@angular/forms';
1313

@@ -26,7 +26,8 @@ import { STANDALONE_SHARED_IMPORTS } from 'app/standalone-shared.module';
2626
styleUrls: ['./edit-standing-instructions.component.scss'],
2727
imports: [
2828
...STANDALONE_SHARED_IMPORTS
29-
]
29+
],
30+
changeDetection: ChangeDetectionStrategy.OnPush
3031
})
3132
export class EditStandingInstructionsComponent implements OnInit {
3233
private formBuilder = inject(UntypedFormBuilder);

src/app/account-transfers/list-standing-instructions/list-standing-instructions.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
/** Angular Imports */
10-
import { Component, ViewChild, inject } from '@angular/core';
10+
import { ChangeDetectionStrategy, Component, ViewChild, inject } from '@angular/core';
1111
import { MatDialog } from '@angular/material/dialog';
1212
import { MatPaginator } from '@angular/material/paginator';
1313
import {
@@ -58,7 +58,8 @@ import { STANDALONE_SHARED_IMPORTS } from 'app/standalone-shared.module';
5858
MatRow,
5959
MatPaginator,
6060
DateFormatPipe
61-
]
61+
],
62+
changeDetection: ChangeDetectionStrategy.OnPush
6263
})
6364
export class ListStandingInstructionsComponent {
6465
private route = inject(ActivatedRoute);

src/app/account-transfers/list-transactions/list-transactions.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
/** Angular Imports */
10-
import { Component, ViewChild, inject } from '@angular/core';
10+
import { ChangeDetectionStrategy, Component, ViewChild, inject } from '@angular/core';
1111

1212
import { MatPaginator } from '@angular/material/paginator';
1313
import {
@@ -51,7 +51,8 @@ import { STANDALONE_SHARED_IMPORTS } from 'app/standalone-shared.module';
5151
MatPaginator,
5252
DateFormatPipe,
5353
YesnoPipe
54-
]
54+
],
55+
changeDetection: ChangeDetectionStrategy.OnPush
5556
})
5657
export class ListTransactionsComponent {
5758
private route = inject(ActivatedRoute);

src/app/account-transfers/make-account-interbank-transfers/make-account-interbank-transfers.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
88

9-
import { Component, Input } from '@angular/core';
9+
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
1010
import { FormGroup, ReactiveFormsModule } from '@angular/forms';
1111
import { FaIconComponent } from '@fortawesome/angular-fontawesome';
1212
import { CdkTextareaAutosize } from '@angular/cdk/text-field';
@@ -20,7 +20,8 @@ import { STANDALONE_SHARED_IMPORTS } from 'app/standalone-shared.module';
2020
...STANDALONE_SHARED_IMPORTS,
2121
FaIconComponent,
2222
CdkTextareaAutosize
23-
]
23+
],
24+
changeDetection: ChangeDetectionStrategy.OnPush
2425
})
2526
export class MakeAccountInterbankTransfersComponent {
2627
@Input() makeAccountTransferForm: FormGroup;

src/app/account-transfers/make-account-transfers/make-account-transfers.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
/** Angular Imports */
10-
import { Component, OnInit, AfterViewInit, ViewChild, inject } from '@angular/core';
10+
import { ChangeDetectionStrategy, Component, OnInit, AfterViewInit, ViewChild, inject } from '@angular/core';
1111
import { ActivatedRoute, Router } from '@angular/router';
1212
import {
1313
AbstractControl,
@@ -66,7 +66,8 @@ import { STANDALONE_SHARED_IMPORTS } from 'app/standalone-shared.module';
6666
FaIconComponent,
6767
CdkTextareaAutosize,
6868
MatProgressSpinner
69-
]
69+
],
70+
changeDetection: ChangeDetectionStrategy.OnPush
7071
})
7172
export class MakeAccountTransfersComponent implements OnInit, AfterViewInit {
7273
private formBuilder = inject(UntypedFormBuilder);

src/app/account-transfers/view-account-transfer/view-account-transfer.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
/** Angular Imports */
1010
import { Location, NgIf, NgClass } from '@angular/common';
11-
import { Component, inject } from '@angular/core';
11+
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
1212
import { ActivatedRoute } from '@angular/router';
1313
import { FaIconComponent } from '@fortawesome/angular-fontawesome';
1414
import { MatDivider } from '@angular/material/divider';
@@ -27,7 +27,8 @@ import { STANDALONE_SHARED_IMPORTS } from 'app/standalone-shared.module';
2727
MatDivider,
2828
DateFormatPipe,
2929
FormatNumberPipe
30-
]
30+
],
31+
changeDetection: ChangeDetectionStrategy.OnPush
3132
})
3233
export class ViewAccountTransferComponent {
3334
private route = inject(ActivatedRoute);

src/app/account-transfers/view-standing-instructions/view-standing-instructions.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
/** Angular Imports */
10-
import { Component, inject } from '@angular/core';
10+
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
1111
import { ActivatedRoute, RouterLink } from '@angular/router';
1212
import { FaIconComponent } from '@fortawesome/angular-fontawesome';
1313
import { MatDivider } from '@angular/material/divider';
@@ -23,7 +23,8 @@ import { STANDALONE_SHARED_IMPORTS } from 'app/standalone-shared.module';
2323
FaIconComponent,
2424
MatDivider,
2525
DateFormatPipe
26-
]
26+
],
27+
changeDetection: ChangeDetectionStrategy.OnPush
2728
})
2829
export class ViewStandingInstructionsComponent {
2930
private route = inject(ActivatedRoute);

src/app/accounting/accounting-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ import { ExternalAssetConfigurationResolver } from './common-resolvers/external-
7676
const routes: Routes = [
7777
Route.withShell([
7878
{
79-
path: 'accounting',
79+
path: '',
8080
data: { title: 'Accounting', breadcrumb: 'Accounting' },
8181
children: [
8282
{

src/app/accounting/accounting-rules/accounting-rules.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
/** Angular Imports */
10-
import { Component, OnInit, ViewChild, inject } from '@angular/core';
10+
import { ChangeDetectionStrategy, Component, OnInit, ViewChild, inject } from '@angular/core';
1111
import { MatPaginator } from '@angular/material/paginator';
1212
import { MatSort, MatSortHeader } from '@angular/material/sort';
1313
import {
@@ -50,7 +50,8 @@ import { STANDALONE_SHARED_IMPORTS } from 'app/standalone-shared.module';
5050
MatRowDef,
5151
MatRow,
5252
MatPaginator
53-
]
53+
],
54+
changeDetection: ChangeDetectionStrategy.OnPush
5455
})
5556
export class AccountingRulesComponent implements OnInit {
5657
private route = inject(ActivatedRoute);

0 commit comments

Comments
 (0)