unepwcmc/SAPI

View on GitHub
app/serializers/trade/shipment_comptab_export_serializer.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Trade::ShipmentComptabExportSerializer < ActiveModel::Serializer
  attributes :rows, :column_headers, :table_title
  def rows
    object.query
  end

  def column_headers
    object.csv_column_headers
  end

  def table_title
    I18n.t "table_title.#{object.get_resource_name}"
  end
end