Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. after_save :update_subtotal
  2.  
  3. def calc_subtotal
  4. order_items.includes(:model).collect {|oi| oi.valid? ? (oi.unit_price.to_f) : 0}.sum
  5. end
  6. def update_subtotal
  7. self.update_column(:subtotal, calc_subtotal)
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement