<% if current_user.admin? %>
<% ((Company.pluck :company_name) - ["IVA"]).each do |company_name| %>
| Run Date |
Location |
Harvest Time |
Supplier |
Distributor |
Total Processed |
Other |
Oyster Info |
<% @results[company_name.gsub(/'/,'').gsub(/\s/,'')].each_slice(1) do |row| %>
<% row.each do |result|
run = Run.find(result.id) %>
|
<%= run.runDate %>
|
<%= run.location ? run.location : "" %>
|
<%= "" %>
|
<%= run.supplier ? run.supplier : "" %>
|
<%= run.distributor ? run.distributor : "" %>
|
"result"
|
<%= run.other ? run.other : "" %>
|
<%= link_to "Show", oysters_index_path( :result_id => result.id, :page_num => params[:page]), :class => "btn btn-primary" %>
|
<% end %>
<% end %>
<%= paginate @results[company_name.gsub(/'/,'').gsub(/\s/,'')] %>
<%= page_entries_info @results[company_name.gsub(/'/,'').gsub(/\s/,'')] %>
<% end %>
<% else %>
| Run Date |
Location |
Harvest Time |
Supplier |
Distributor |
Total Processed |
Other |
Oyster Info |
<% @results.each_slice(1) do |row| %>
<% row.each do |result|
run = Run.find(result.id) %>
|
<%= run.runDate %>
|
<%= run.location ? run.location : "" %>
|
<%= "" %>
|
<%= run.supplier ? run.supplier : "" %>
|
<%= run.distributor ? run.distributor : "" %>
|
"result"
|
<%= run.other ? run.other : "" %>
|
<%= link_to "Show", oysters_index_path( :result_id => result.id, :page_num => params[:page]), :class => "btn btn-primary" %>
|
<% end %>
<% end %>
<%= paginate @results %>
<%= page_entries_info @results %>
<% end %>