Sha256: f65f640a91a0401ced13ba4a9f7e7f1e0183f10e36bf4feac6d372d9a4aac232
Contents?: true
Size: 1.09 KB
Versions: 12
Compression:
Stored size: 1.09 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 assign_order_attributes assign_payments_attributes order.save 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
12 entries across 12 versions & 1 rubygems