Sha256: aa080c1bcf44ebfa498edf08ca1af832394cf75b5d31c2c54f8b87c69075ccc2
Contents?: true
Size: 1.37 KB
Versions: 7
Compression:
Stored size: 1.37 KB
Contents
module Spree module Admin class ReportsController < Spree::Admin::BaseController respond_to :html AVAILABLE_REPORTS = { :sales_total => { :name => I18n.t(:sales_total), :description => I18n.t(:sales_total_description) } } def index @reports = AVAILABLE_REPORTS respond_with(@reports) end def sales_total params[:q] = {} unless params[:q] if params[:q][:created_at_gt].blank? params[:q][:created_at_gt] = Time.zone.now.beginning_of_month else params[:q][:created_at_gt] = Time.zone.parse(params[:q][:created_at_gt]).beginning_of_day rescue Time.zone.now.beginning_of_month end if params[:q] && !params[:q][:created_at_lt].blank? params[:q][:created_at_lt] = Time.zone.parse(params[:q][:created_at_lt]).end_of_day rescue "" end if params[:q].delete(:completed_at_not_null) == "1" params[:q][:completed_at_not_null] = true else params[:q][:completed_at_not_null] = false end params[:q][:s] ||= "created_at desc" @search = Order.complete.ransack(params[:q]) @orders = @search.result @item_total = @orders.sum(:item_total) @adjustment_total = @orders.sum(:adjustment_total) @sales_total = @orders.sum(:total) respond_with end end end end
Version data entries
7 entries across 7 versions & 1 rubygems