Sha256: ed81687748fae8ac2c52f21ab7ca3b498d39fbec9567eff465a6b75c143da64c
Contents?: true
Size: 970 Bytes
Versions: 5
Compression:
Stored size: 970 Bytes
Contents
Spree::Order.class_eval do money_methods :order_adjustment_total, :shipping_discount # Make sure the order confirmation is delivered when the order has been paid for. def finalize! # lock all adjustments (coupon promotions, etc.) all_adjustments.each(&:close) # update payment and shipment(s) states, and save updater.update_payment_state shipments.each do |shipment| shipment.update!(self) shipment.finalize! if paid? || authorized? end updater.update_shipment_state save! updater.run_hooks touch :completed_at if !confirmation_delivered? && (paid? || authorized?) deliver_order_confirmation_email end consider_risk end def mollie_order Spree::Mollie::Order.new(self) end def authorized? payments.last.authorized? end def order_adjustment_total adjustments.eligible.sum(:amount) end def has_order_adjustments? order_adjustment_total.abs > 0 end end
Version data entries
5 entries across 5 versions & 1 rubygems