Comparing now BankAccount's technicalId

This commit is contained in:
dankito 2020-08-05 17:29:06 +02:00
parent 561114ee26
commit 60e4a82fe0
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ open class AccountTransaction(
if (this === other) return true
if (other !is AccountTransaction) return false
if (bankAccount != other.bankAccount) return false
if (bankAccount.technicalId != other.bankAccount.technicalId) return false
if (amount != other.amount) return false
if (currency != other.currency) return false
if (unparsedUsage != other.unparsedUsage) return false