I have an array of user info in @user_info and in array there is a column total and column user_id.
I have another instance variable @product and it has column user_id
How do i calculate sum of all values in column total verifying the user_id from @user_info and @product same?
I am trying to calcuate sum in controller, store it in instance variable and use that variable in JSON
Thanks