Fix references to column_values

pull/9782/head
Oliver Günther 3 years ago
parent cf7993bf22
commit 2c5a12c19e
No known key found for this signature in database
GPG Key ID: A3A8BDAD7C0C552C
  1. 6
      modules/xls_export/app/models/xls_export/concerns/spreadsheet_builder.rb

@ -47,7 +47,13 @@ module XlsExport
end
end
# Forwards to column_values by default
# but allows for extensions
def row(object)
column_values(object)
end
def column_values(object)
columns.collect do |column|
format_attribute(object, column[:name])
end

Loading…
Cancel
Save