Checking now equality of whole bank account instead of only its technical id
This commit is contained in:
parent
76a2cb0642
commit
9dc6c0c5c0
|
@ -95,7 +95,7 @@ open class AccountTransaction(
|
||||||
if (this === other) return true
|
if (this === other) return true
|
||||||
if (other !is AccountTransaction) return false
|
if (other !is AccountTransaction) return false
|
||||||
|
|
||||||
if (bankAccount.technicalId != other.bankAccount.technicalId) return false
|
if (bankAccount != other.bankAccount) return false
|
||||||
if (amount != other.amount) return false
|
if (amount != other.amount) return false
|
||||||
if (currency != other.currency) return false
|
if (currency != other.currency) return false
|
||||||
if (unparsedUsage != other.unparsedUsage) return false
|
if (unparsedUsage != other.unparsedUsage) return false
|
||||||
|
|
Loading…
Reference in New Issue