Method: Propertyware::Equity#==
- Defined in:
- lib/propertyware/models/equity.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'lib/propertyware/models/equity.rb', line 145 def ==(o) return true if self.equal?(o) self.class == o.class && discount_account == o.discount_account && escrow_account == o.escrow_account && exclude_from1099 == o.exclude_from1099 && exclude_from_pay_in_full == o.exclude_from_pay_in_full && exclude_late_fee == o.exclude_late_fee && rent_account == o.rent_account && tax_account == o.tax_account && transfer_balance_to_retained_earnings == o.transfer_balance_to_retained_earnings end |