Class: Admin::OrderReportsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- Admin::OrderReportsController
- Includes:
- Effective::CrudController
- Defined in:
- app/controllers/admin/order_reports_controller.rb
Instance Method Summary collapse
Instance Method Details
#grouped_transactions ⇒ Object
17 18 19 20 21 22 23 24 |
# File 'app/controllers/admin/order_reports_controller.rb', line 17 def grouped_transactions @page_title = 'Revenue: Grouped Transactions' @datatable = Admin::ReportGroupedTransactionsDatatable.new :index, :report_grouped_transactions render 'index' end |
#payment_providers ⇒ Object
26 27 28 29 30 31 32 33 |
# File 'app/controllers/admin/order_reports_controller.rb', line 26 def payment_providers @page_title = 'Revenue: Payment Providers' @datatable = Admin::ReportPaymentProvidersDatatable.new :index, :report_payment_providers render 'index' end |
#transactions ⇒ Object
8 9 10 11 12 13 14 15 |
# File 'app/controllers/admin/order_reports_controller.rb', line 8 def transactions @page_title = 'Revenue: Individual Transactions' @datatable = Admin::ReportTransactionsDatatable.new :index, :report_transactions render 'index' end |