budget/app/models/member.rb

24 lines
477 B
Ruby
Raw Normal View History

2022-11-20 15:52:18 -05:00
class Member < ApplicationRecord
2022-11-20 16:21:28 -05:00
has_many :incomes
def income
incomes.sum(&:amount)
end
def included_income
incomes.where(included: true).sum(&:amount)
end
def others_included_income
Income.where(included: true).sum(&:amount) - included_income
2022-11-20 16:21:28 -05:00
end
def burden_percent
((Income.total - others_included_income) / Income.total).round(2)
2022-11-20 16:21:28 -05:00
end
2023-02-24 19:08:12 -05:00
def burden_amount(total_amount: Expense.monthly_total)
burden_percent * total_amount
2022-11-20 16:21:28 -05:00
end
2022-11-20 15:52:18 -05:00
end