New Discussion

Notifications

You’re not receiving notifications from this thread.

how i plot a profit_loss graph

0
Rails

have income,expense, user controller i want to plot a graph of currrent user profit i calculated it in model.
def total_expense
expenses.pluck(:amount).sum
end
def total_incomes
incomes.pluck(:amount).sum
end
def profit_loss
total_incomes - total_expense
end
how i plot a graph of profit_loss its value is not save in data base

Join the discussion
Create an account Log in

Learning Ruby on Rails? Join our newsletter.

We won't send you spam. Unsubscribe at any time.