Comparing now BankAccount's technicalId
This commit is contained in:
parent
561114ee26
commit
60e4a82fe0
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue