2

gem 'axlsx_rails'在 Rails 应用程序中使用。

我想对单元格(A 列的第 2 行到第 23 行)进行排序,作为创建选项卡的最后一步。

这是我的代码:

wb.add_worksheet(:name => "Cost") do |sheet|
  sheet.page_setup.set :orientation => :portrait
  sheet.add_row ['Seq', 'Category', 'Remarks', 'Amount', 'Notes'], :style => [header_cell, header_cell, header_cell, header_cell, header_cell]
    @costproject.costestimates.each do |costestimate|
      sheet.add_row [costestimate.costcat.position, costestimate.costcat.category_name, costestimate.costcat.categorydesc, number_with_precision(costestimate.amount, :precision => 2), costestimate.notes], :style=> [intgr,nil,nil,money]
    end
  sheet.add_row [nil, 'TOTAL', nil, "=SUM(D2:D23)"]
  sheet.column_widths 5, 35, 25, 25
  cells.sort ?????
end

我认为这是可以做到的。那正确吗?如果是,如何?我用什么代替cells.sort ?????

谢谢你的帮助!

更新1:

感谢 emcanes,我在 add_row 期间对记录进行了排序:

       sheet.add_row ['Seq', 'Category', 'Remarks', 'Amount', 'Notes'], :style => [header_cell, header_cell, header_cell, header_cell, header_cell]
    @costproject.costestimates.includes(:costcat).order("costcats.position").each do |ce|
      sheet.add_row [ce.costcat.position, ce.costcat.category_name,  ce.costcat.categorydesc, number_with_precision(ce.amount, :precision => 2), ce.notes], :style=> [intgr,border,border,money,border]
    end

我还是想知道AXSLX能不能用cells.sort??

4

1 回答 1

0

SimpleTypedList 可通过rows工作表获得,虽然没有sheet.rows=方法,但您可以使用sort_by!它来修改它:

wb.add_worksheet(:name => "Cost") do |sheet|
  # your other code
  first_row = sheet.rows.first
  last_row  = sheet.rows.last
  # get a total position higher than all others
  tpos = sheet.rows.map {|row| row.cells[0].value.to_i}.max + 1
  sheet.rows.sort_by! do |row|
    (row == first_row ? -1 : (row == last_row ? tpos : row.cells[0].value.to_i))
  end
  # now do styling
end

一行没有内部索引,所以你不能问它是什么索引。如果您询问它,它只会找出它在行列表中的位置。所以你必须提前保存标题/总行。

我没有测试过样式,但我完全不确定它是否会遵循这种排序,因为这会弄乱 Axlsx 内部结构。它可能需要在之后发生,除非它是通用的。

而且,顺便说一句,使用该Axlsx::cell_r函数来获取您的总范围:

"=SUM(D2:#{Axlsx::cell_r(3,@costproject.costestimates.length)}"

由于它期望基于零的索引,因此实际长度将计入标题行。22 估计会给你“D23”。

于 2014-08-05T20:40:16.300 回答