Sha256: dad57de02f81badfd3d4ef62a923ea1a16a873e8d5c493af491a64d4fbd85776
Contents?: true
Size: 2 KB
Versions: 37
Compression:
Stored size: 2 KB
Contents
class OrderWalkthrough def self.up_to(state) new.up_to(state) end def up_to(state) # Need to create a valid zone too... @zone = FactoryGirl.create(:zone) @country = FactoryGirl.create(:country) @state = FactoryGirl.create(:state, country: @country) @zone.members << Spree::ZoneMember.create(zoneable: @country) # A shipping method must exist for rates to be displayed on checkout page FactoryGirl.create(:shipping_method, zones: [@zone]).tap do |sm| sm.calculator.preferred_amount = 10 sm.calculator.preferred_currency = Spree::Config[:currency] sm.calculator.save end order = Spree::Order.create!( email: "spree@example.com", store: Spree::Store.first || FactoryGirl.create(:store) ) add_line_item!(order) order.next! states_to_process = if state == :complete states else end_state_position = states.index(state.to_sym) states[0..end_state_position] end states_to_process.each do |state_to_process| send(state_to_process, order) end order end private def add_line_item!(order) FactoryGirl.create(:line_item, order: order) order.reload end def address(order) order.bill_address = FactoryGirl.create(:address, country: @country, state: @state) order.ship_address = FactoryGirl.create(:address, country: @country, state: @state) order.next! end def delivery(order) order.next! end def payment(order) credit_card = FactoryGirl.create(:credit_card) order.payments.create!(payment_method: credit_card.payment_method, amount: order.total, source: credit_card) # TODO: maybe look at some way of making this payment_state change automatic order.payment_state = 'paid' order.next! end def confirm(order) order.complete! end def complete(order) # noop? end def states [:address, :delivery, :payment, :confirm] end end
Version data entries
37 entries across 37 versions & 1 rubygems