Sha256: 8be81ca64fc54cf5767ba7af542acf080ee91ea98d2ebfb56c5c4dbef29a3a5a
Contents?: true
Size: 1.95 KB
Versions: 50
Compression:
Stored size: 1.95 KB
Contents
class OrderWalkthrough def self.up_to(state) # A default store must exist to provide store settings FactoryBot.create(:store) unless Spree::Store.exists? # A payment method must exist for an order to proceed through the Address state unless Spree::PaymentMethod.exists? FactoryBot.create(:check_payment_method) end # Need to create a valid zone too... zone = FactoryBot.create(:zone) country = FactoryBot.create(:country) zone.members << Spree::ZoneMember.create(zoneable: country) country.states << FactoryBot.create(:state, country: country) # A shipping method must exist for rates to be displayed on checkout page unless Spree::ShippingMethod.exists? FactoryBot.create(:shipping_method).tap do |sm| sm.calculator.preferred_amount = 10 sm.calculator.preferred_currency = Spree::Config[:currency] sm.calculator.save end end order = Spree::Order.create!(email: 'spree@example.com') add_line_item!(order) order.next! end_state_position = states.index(state.to_sym) states[0...end_state_position].each do |state| send(state, order) end order end private def self.add_line_item!(order) FactoryBot.create(:line_item, order: order) order.reload end def self.address(order) order.bill_address = FactoryBot.create(:address, country_id: Spree::Zone.global.members.first.zoneable.id) order.ship_address = FactoryBot.create(:address, country_id: Spree::Zone.global.members.first.zoneable.id) order.next! end def self.delivery(order) order.next! end def self.payment(order) order.payments.create!(payment_method: Spree::PaymentMethod.first, amount: order.total) # TODO: maybe look at some way of making this payment_state change automatic order.payment_state = 'paid' order.next! end def self.complete(_order) # noop? end def self.states [:address, :delivery, :payment, :complete] end end
Version data entries
50 entries across 50 versions & 1 rubygems