Files
openfoodnetwork/engines/order_management
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
..

Order Management

This is the rails engine for the Order Management domain.

See our wiki for more info about domains and engines in OFN.