Class: DailyDonationReport
- Inherits:
-
Object
- Object
- DailyDonationReport
- Extended by:
- ArtfullyOseHelper
- Defined in:
- app/models/daily_donation_report.rb
Defined Under Namespace
Classes: Row
Instance Attribute Summary collapse
-
#donation_total ⇒ Object
Returns the value of attribute donation_total.
-
#organization ⇒ Object
Returns the value of attribute organization.
-
#rows ⇒ Object
Returns the value of attribute rows.
-
#start_date ⇒ Object
Returns the value of attribute start_date.
Instance Method Summary collapse
- #footer ⇒ Object
- #header ⇒ Object
-
#initialize(organization, date = nil) ⇒ DailyDonationReport
constructor
A new instance of DailyDonationReport.
- #to_table ⇒ Object
- #total ⇒ Object
Methods included from ArtfullyOseHelper
amount_and_nongift, bootstrapped_type, build_action_path, build_order_location, channel_checkbox, channel_text, check_mark, clean_full_error_messages, contextual_menu, credit_card_message, date_field_tag, datetime_field_tag, events_to_options, fully_qualified_asset_path, get_selected_class, icon_link_to, icon_tag, link_to_add_fields, link_to_remove_fields, nav_dropdown, number_as_cents, number_to_dollars, pluralize_word, refund_header, select_event_for_sales_search, select_membership_type_for_sales_search, select_pass_type_for_sales_search, select_show_for_sales_search, sorted_us_state_abbreviations, sorted_us_state_names, thanks_message, ticket_seller_name, time_ago_sentence, time_zone_description, us_states, verb_for_save, widget_script, with_kit
Methods included from LinkHelper
#active?, #active_link_to, #active_section, #calendar_active_link_to, #in_section, #in_section?, #in_sub_section
Constructor Details
#initialize(organization, date = nil) ⇒ DailyDonationReport
Returns a new instance of DailyDonationReport.
5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'app/models/daily_donation_report.rb', line 5 def initialize(organization, date=nil) @organization = organization @start_date = (date || 1.day.ago).in_time_zone(@organization.time_zone).midnight @end_date = @start_date + 1.day orders = organization.orders.includes(:person, :items) orders = orders.csv_not_imported.after(@start_date).before(@end_date) || [] @rows = [] orders.each do |order| @rows << Row.new(order) unless order.donations.empty? end end |
Instance Attribute Details
#donation_total ⇒ Object
Returns the value of attribute donation_total.
2 3 4 |
# File 'app/models/daily_donation_report.rb', line 2 def donation_total @donation_total end |
#organization ⇒ Object
Returns the value of attribute organization.
2 3 4 |
# File 'app/models/daily_donation_report.rb', line 2 def organization @organization end |
#rows ⇒ Object
Returns the value of attribute rows.
2 3 4 |
# File 'app/models/daily_donation_report.rb', line 2 def rows @rows end |
#start_date ⇒ Object
Returns the value of attribute start_date.
2 3 4 |
# File 'app/models/daily_donation_report.rb', line 2 def start_date @start_date end |
Instance Method Details
#footer ⇒ Object
30 31 32 |
# File 'app/models/daily_donation_report.rb', line 30 def ["Total:", DailyDonationReport.number_to_currency(total / 100.0), ""] end |
#header ⇒ Object
22 23 24 |
# File 'app/models/daily_donation_report.rb', line 22 def header ["Order ID", "Total", "Customer"] end |
#to_table ⇒ Object
26 27 28 |
# File 'app/models/daily_donation_report.rb', line 26 def to_table [header] + @rows.collect {|row| row.to_a.flatten(1)} << end |
#total ⇒ Object
18 19 20 |
# File 'app/models/daily_donation_report.rb', line 18 def total @rows.collect(&:order).sum{|o| o.donations.sum(&:total_price)} end |