Files
openfoodnetwork/app/models
Matt-Yorkley 7d0ec48bcf Improve performance on summing adjustments and payment
:amount is a database field in these cases, as opposed to a method that returns a computed result. Calling `.sum(:amount)` is much more efficient here as it computes the sum at database level, as opposed to `.map(&:amount).sum`, which would fetch and instanciate all the objects first, and then sum the amounts after.
2021-01-13 16:16:49 +00:00
..
2012-03-27 10:10:26 +11:00
2019-10-18 21:15:11 +01:00
2019-10-18 21:15:11 +01:00
2020-06-22 12:23:10 +01:00