rails计算小计和总计的方法

时间:2011-10-16 02:38:44

标签: ruby-on-rails-3 sum subtotal

背景:我有两个模型Order和Item。

我想根据item.quantity * item.price计算项目小计 目前,这是在视图中完成的(但不是适当的地方)。

<%= number_to_currency(item.quantity * item.price) %>

我还需要计算订单总数,但我被卡住了。我没有任何专栏。 什么是最好的方法?使用该型号?助手还是观察员?

现在我设法通过Order helper

进行小计工作
def item_subtotal(item)
  item_subtotal = item.quantity * item.price
end

工作解决方案:

项目模型

def subtotal
  price * quantity
end

在视图渲染<%= item.subtotal %>

订单型号

def total_price
  total_price = items.inject(0) { |sum, p| sum + p.subtotal }
end

订单#show view render <%= number_to_currency(@order.total_price) %>

3 个答案:

答案 0 :(得分:7)

在您的项目模型上,您可以添加小计方法:

def subtotal
  quantity * price
end

假设您将Order模型作为与Item的has_many关系,您可以map该集合获取订单模型上的价格列表:

def subtotals
  items.map do |i| i.subtotal end
end

因为您在Rails环境中运行,所以您可以使用activesupport sum方法获取订单模型的总数:

def total
  subtotals.sum
end

或者如果您更喜欢将它们放在一起:

def total
  items.map do |i| i.subtotal end.sum
end

然后,您可以在视图中使用Item上的小计和Order上的Total。

编辑:视图可能如下所示:

<% for item in @order.items %> <%= item.price %><br/><% end %>
<%= @order.total %>

答案 1 :(得分:0)

由于它是模型的功能(您想要计算自引用项目的某些内容),因此模型本身更合适的位置,以便您可以轻松使用

item.subtotal

答案 2 :(得分:0)

您可以使用

显示item_subtotal

总计你可以通过

来计算

total_price = @ order.items.to_a.sum {| item | total = item.product.price * item.quantity}

我认为这对你有用。