|
@ -88,10 +88,6 @@ export class AccountsTableComponent implements OnChanges, OnDestroy, OnInit { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public onToggleExcluded(aAccount: AccountModel) { |
|
|
|
|
|
this.accountToggleExcluded.emit(aAccount); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public onOpenAccountDetailDialog(accountId: string) { |
|
|
public onOpenAccountDetailDialog(accountId: string) { |
|
|
this.router.navigate([], { |
|
|
this.router.navigate([], { |
|
|
queryParams: { accountId, accountDetailDialog: true } |
|
|
queryParams: { accountId, accountDetailDialog: true } |
|
@ -102,6 +98,10 @@ export class AccountsTableComponent implements OnChanges, OnDestroy, OnInit { |
|
|
alert(aComment); |
|
|
alert(aComment); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public onToggleExcluded(aAccount: AccountModel) { |
|
|
|
|
|
this.accountToggleExcluded.emit(aAccount); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public onUpdateAccount(aAccount: AccountModel) { |
|
|
public onUpdateAccount(aAccount: AccountModel) { |
|
|
this.accountToUpdate.emit(aAccount); |
|
|
this.accountToUpdate.emit(aAccount); |
|
|
} |
|
|
} |
|
|