mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
= form_for @search, :url => spree.payments_admin_reports_path do |f|
|
|
= label_tag nil, t(:date_range)
|
|
%br
|
|
.date-range-filter
|
|
%div{"class" => "left sub-field"}
|
|
= f.text_field :completed_at_gt, :class => 'datepicker'
|
|
%br
|
|
= label_tag nil, t(:start), :class => 'sub'
|
|
%div{"class" => "right sub-field"}
|
|
= f.text_field :completed_at_lt, :class => 'datepicker'
|
|
%br
|
|
= label_tag nil, t(:stop)
|
|
%br
|
|
= label_tag nil, "Distributor: "
|
|
= f.collection_select(:distributor_id_eq, @distributors, :id, :name, :include_blank => 'All')
|
|
%br
|
|
= label_tag nil, "Report Type: "
|
|
= select_tag(:report_type, options_for_select([['Payments By Type',:payments_by_payment_type],['Itemised Payment Totals',:itemised_payment_totals],['Payment Totals',:payment_totals]], @report_type))
|
|
%br
|
|
%br
|
|
= check_box_tag :csv
|
|
= label_tag :csv, "Download as csv"
|
|
%br
|
|
= button t(:search)
|
|
%br
|
|
%br
|
|
%table#listing_orders.index
|
|
%thead
|
|
%tr{'data-hook' => "orders_header"}
|
|
- @header.each do |heading|
|
|
%th=heading
|
|
%tbody
|
|
- @table.each do |row|
|
|
%tr
|
|
- row.each do |column|
|
|
%td= column
|
|
- if @table.empty?
|
|
%tr
|
|
%td{:colspan => "2"}= t(:none)
|