Created
October 3, 2023 16:08
-
-
Save babgyy/f87e200753cf9e6f15e2956bb54349ff to your computer and use it in GitHub Desktop.
Calcul revenus programms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
orders = Spree::Order.complete.master_program | |
puts orders.map(&:user_id).uniq.size | |
puts orders.sum(:total) | |
orders = Spree::Order.complete.time_program | |
puts orders.map(&:user_id).uniq.size | |
puts orders.sum(:total) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment