Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. def percent_total(amount)
  2. if self.school.is_mbs
  3. if mbs_total_sales == 0
  4. 0
  5. else
  6. (amount/mbs_total_sales.to_f) * 100
  7. end
  8. else
  9. if total_sales == 0
  10. 0
  11. else
  12. (amount/total_sales.to_f) * 100
  13. end
  14. end
  15. end
Add Comment
Please, Sign In to add comment