Class: Spree::Stock::Estimator
- Inherits:
-
Object
- Object
- Spree::Stock::Estimator
- Defined in:
- app/models/spree/stock/estimator.rb
Instance Attribute Summary collapse
-
#currency ⇒ Object
readonly
Returns the value of attribute currency.
-
#order ⇒ Object
readonly
Returns the value of attribute order.
Instance Method Summary collapse
-
#initialize(order) ⇒ Estimator
constructor
A new instance of Estimator.
- #shipping_rates(package, frontend_only = true) ⇒ Object
Constructor Details
#initialize(order) ⇒ Estimator
Returns a new instance of Estimator.
6 7 8 9 |
# File 'app/models/spree/stock/estimator.rb', line 6 def initialize(order) @order = order @currency = order.currency end |
Instance Attribute Details
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
4 5 6 |
# File 'app/models/spree/stock/estimator.rb', line 4 def currency @currency end |
#order ⇒ Object (readonly)
Returns the value of attribute order.
4 5 6 |
# File 'app/models/spree/stock/estimator.rb', line 4 def order @order end |
Instance Method Details
#shipping_rates(package, frontend_only = true) ⇒ Object
11 12 13 14 15 16 |
# File 'app/models/spree/stock/estimator.rb', line 11 def shipping_rates(package, frontend_only = true) rates = calculate_shipping_rates(package) rates.select! { |rate| rate.shipping_method.frontend? } if frontend_only choose_default_shipping_rate(rates) sort_shipping_rates(rates) end |