在Rails视图中分组

时间:2012-04-13 08:13:00

标签: ruby-on-rails group-by

在我的rails应用程序中,我有以下模型

Transaction
  belongs_to :account
  belongs_to :agent
  belongs_to :program

这是我用来获取数据的查询

def self.efficiency_report(starts=nil, ends=nil)
sql = "SELECT p.abbreviation,ag.name,
         t.miles, t.date
        FROM transactions t
        inner join accounts a on t.account_id = a.id
        inner join programs p on a.program_id = p.id
        inner join agents ag on t.agent_id = ag.id
        Group by p.id , ag.id" 
 result_array(sql)
end


def self.result_array(sql)
  conn = ActiveRecord::Base.connection
  res = conn.execute(sql)
  results = []
  res.each{|r|
    results << r
  }
  return results
end

我希望首先按程序分组呈现数据,然后按代理名称分组,然后按英里数,这样

Program:AA
  Agent:Bob
    Miles          Date 
    1234           02/12/2012           
    5463           03/12/2012 
 Agent:Ben
    Miles          Date 
    234           02/22/2012           
    344           01/02/2012 

Program:BB
  Agent:Bob
    Miles          Date 
    1234           02/12/2012           
    5463           03/12/2012 
  Agent:Ben
    Miles          Date 
    234           02/22/2012           
    344           01/02/2012

为此我在我的观点中做了以下

%h2 Vendor Efficiency Report
- @transactions.group_by(&:row[0]).sort.each { |data, transaction|
%h2= data.row[0]
- transaction.group_by(&:row[1]).sort.each { |data, transaction|
%table#data_table.display{:cellpadding => "0", :cellspacing => "0"}
  %h3{:style => "clear:both;margin-left:10px"}= data.row[1]
  %thead
    %tr.odd
      %td.bold{:style => "width:60px;"} Miles
      %td.bold{:style => "width:60px;"} Date
  - for t in transaction
    %tbody
      %tr
       %td{:style => "width:60px;"}= row[2] 
       %td{:style => "width:60px;"}= row[3]
  -}
-}
= will_paginate @transactions

但是我收到了这个错误

错误的参数类型字符串(预期的Proc)

有人会让我知道我在这里做错了什么,还是有其他更好的分组方式?

提前致谢

1 个答案:

答案 0 :(得分:0)

问题在于您的group_by来电。我不确定&:row[0]正在做什么,但它传递一个字符串作为参数。我想这就是你要找的东西:

@transactions.group_by{ |r| r[0] }...

修改

刚刚弄明白&:row[0]正在做什么。它是对Symbol#[]方法的调用,该方法返回给定索引处的字符(基本上,就好像它是String)。调用:row[0]返回字符串"row"的第一个字符。

所以基本上,就像你在打电话一样:

@transactions.group_by(&"r")