Sha256: bf02edeed00e29693e1515da23441478221c30617765b5c0f9588f21c1de6ae6

Contents?: true

Size: 1.23 KB

Versions: 22

Compression:

Stored size: 1.23 KB

Contents

xml.Worksheet 'ss:Name' => I18n.t(:tab_tasks) do
  xml.Table do
    unless @tasks.empty?
      # Header.
      xml.Row do
        heads = %w{id
                   name
                   due
                   date_created
                   date_updated
                   completed
                   user
                   assigned_to
                   category
                   background_info}

        heads.each do |head|
          xml.Cell do
            xml.Data I18n.t(head),
                     'ss:Type' => 'String'
          end
        end
      end

      # Rows.
      @tasks.map(&:second).flatten.each do |task|
        xml.Row do
          data = [task.id,
                  task.name,
                  I18n.t(task.computed_bucket),
                  task.created_at,
                  task.updated_at,
                  task.completed_at,
                  task.user.try(:name),
                  task.assignee.try(:name),
                  task.category,
                  task.background_info]

          data.each do |value|
            xml.Cell do
              xml.Data value,
                       'ss:Type' => "#{value.respond_to?(:abs) ? 'Number' : 'String'}"
            end
          end
        end
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
fat_free_crm-0.14.2 app/views/tasks/index.xls.builder
fat_free_crm-0.15.2 app/views/tasks/index.xls.builder
fat_free_crm-0.16.4 app/views/tasks/index.xls.builder
fat_free_crm-0.14.1 app/views/tasks/index.xls.builder
fat_free_crm-0.15.1 app/views/tasks/index.xls.builder
fat_free_crm-0.16.3 app/views/tasks/index.xls.builder
fat_free_crm-0.16.2 app/views/tasks/index.xls.builder
fat_free_crm-0.16.1 app/views/tasks/index.xls.builder
fat_free_crm-0.16.0 app/views/tasks/index.xls.builder
fat_free_crm-0.15.0 app/views/tasks/index.xls.builder
fat_free_crm-0.15.0.beta.2 app/views/tasks/index.xls.builder
fat_free_crm-0.15.0.beta app/views/tasks/index.xls.builder
fat_free_crm-0.14.0 app/views/tasks/index.xls.builder
reduced_fat_crm-0.15.0.beta app/views/tasks/index.xls.builder
reduced_fat_crm-0.14.0 app/views/tasks/index.xls.builder
fat_free_crm-0.13.6 app/views/tasks/index.xls.builder
fat_free_crm-0.13.5 app/views/tasks/index.xls.builder
fat_free_crm-0.13.4 app/views/tasks/index.xls.builder
fat_free_crm-0.13.3 app/views/tasks/index.xls.builder
fat_free_crm-0.13.2 app/views/tasks/index.xls.builder