Fixed that unsupported account types are not taking into calculation for selectedAccountsForWhichNotAllTransactionsHaveBeenFetched
This commit is contained in:
parent
9650fb59d8
commit
51044a257c
|
@ -678,7 +678,7 @@ open class BankingPresenter(
|
|||
get() = currencyInfoProvider.getCurrencySymbolForIsoCodeOrEuro(currencyIsoCodeOfSelectedAccounts)
|
||||
|
||||
open val selectedAccountsForWhichNotAllTransactionsHaveBeenFetched: List<TypedBankAccount>
|
||||
get() = selectedAccounts.filter { it.haveAllTransactionsBeenRetrieved == false }
|
||||
get() = selectedAccounts.filter { it.haveAllTransactionsBeenRetrieved == false && it.isAccountTypeSupportedByApplication }
|
||||
|
||||
open val selectedAccountsTransactionRetrievalState: TransactionsRetrievalState
|
||||
get() = getAccountsTransactionRetrievalState(selectedAccounts)
|
||||
|
|
Loading…
Reference in New Issue