Sha256: 229ebf8dc97da4a808d57629817e0f394073615b29abe99961492f276c034636
Contents?: true
Size: 1.25 KB
Versions: 5
Compression:
Stored size: 1.25 KB
Contents
module Spree class OrderUpdateAttributes # @param order [Order] existing (persisted) order # @param attributes [Hash] attributes which are assigned to the new order. # These attributes should already have been filtered. # * :payments_attributes attributes def initialize(order, attributes, request_env: nil) @order = order @attributes = attributes.dup @payments_attributes = @attributes.delete(:payments_attributes) || [] @request_env = request_env end # Assign the attributes to the order and save the order # @return true if saved, otherwise false and errors will be set on the order def apply order.validate_payments_attributes(@payments_attributes) assign_order_attributes assign_payments_attributes if order.save order.set_shipments_cost if order.shipments.any? true else false end end private attr_reader :attributes, :payments_attributes, :order def assign_order_attributes order.assign_attributes attributes end def assign_payments_attributes @payments_attributes.each do |payment_attributes| PaymentCreate.new(order, payment_attributes, request_env: @request_env).build end end end end
Version data entries
5 entries across 5 versions & 1 rubygems