Sha256: 8073403b256026e762343953ee9b6d68b3e7a1c28e4bd67094e2f49443daefc5
Contents?: true
Size: 924 Bytes
Versions: 62
Compression:
Stored size: 924 Bytes
Contents
module Workarea class Checkout module Steps class Base attr_reader :checkout delegate :order, :user, :payment, :payment_profile, :shipping, :shippings, to: :checkout, allow_nil: true def initialize(checkout) @checkout = checkout end # Update data related to current step of checkout # # @param [Hash] params # # @return [Boolean] whether the update succeeded # def update(params = {}) raise(NotImplementedError, "#{self.class} must implement the #update method") end # Whether this checkout step is finished. # Used for redirecting and summary display in checkout. # # @return [Boolean] # def complete? raise(NotImplementedError, "#{self.class} must implement the #complete? method") end end end end end
Version data entries
62 entries across 62 versions & 1 rubygems