Class: SpreeGoogleAnalytics::CheckoutPresenter

Inherits:
OrderPresenter show all
Defined in:
app/presenters/spree_google_analytics/checkout_presenter.rb

Direct Known Subclasses

PaymentPresenter

Instance Method Summary collapse

Methods inherited from OrderPresenter

#initialize

Constructor Details

This class inherits a constructor from SpreeGoogleAnalytics::OrderPresenter

Instance Method Details

#callObject



3
4
5
6
7
8
9
10
# File 'app/presenters/spree_google_analytics/checkout_presenter.rb', line 3

def call
  {
    currency: @order.currency,
    value: @order.analytics_subtotal,
    coupon: try_coupon_code,
    items: products(@order)
  }.merge(try_debug_mode)
end