Posts by Vilmar Rodrigues Dahmer • 1 point
1 post
-
0
votes3
answers390
viewsA: Calculate parent and child totals
To make the sum_details method a little more concise. def sum_detail self.valor_total = self.details.inject(0){|sum,detail| sum + detail.total } end Removes self.save! from sum_prices and…