pingu
pingu

Reputation: 8827

How to assign the contents of one model to another in Rails?

I have the following create action:

def create
    @order = Order.new(params[:order])

    if params[:same_as_above] == "1"
      @order.billing_address.name = @order.shipping_address.name
      @order.billing_address.number = @order.shipping_address.number
      @order.billing_address.street = @order.shipping_address.town
    end

    if @order.save
      if @order.purchase
        render :action => "success"
      else
        render :action => "failure"
      end
    else
      render :action => 'new'
    end
  end

It works, but seems a bit cumbersome and brittle in the way i copy the shipping address to the billing address, attribute by attribute. Is there a better way please?

Upvotes: 2

Views: 1468

Answers (2)

pingu
pingu

Reputation: 8827

@order.billing_address.attributes = @order.shipping_address.attributes

does the trick.

Upvotes: 5

yfeldblum
yfeldblum

Reputation: 65435

If your models are set up correctly, you can use:

@order.billing_address = @order.shipping_address

Upvotes: 0

Related Questions