Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6319279
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T15:46:41+00:00 2026-05-24T15:46:41+00:00

I have a problem trying to update an attribute of one model using the

  • 0

I have a problem trying to update an attribute of one model using the value from another model, but those two models are not related.

My models are:

class Order < ActiveRecord::Base
  has_many :order_details
  has_many :waybills
end

class OrderDetail < ActiveRecord::Base
  belongs_to :order, :foreign_key => "order_id"
  belongs_to :product, :foreign_key => "product_id"
end

class Waybill < ActiveRecord::Base
  has_many :purchases
  belongs_to :order, :foreign_key => 'order_id'
end

class Purchase < ActiveRecord::Base
  belongs_to :waybill, :foreign_key => 'waybill_id'
  has_many :detail_purchases
end

class DetailPurchase < ActiveRecord::Base
  belongs_to :purchase, :foreign_key => 'purchase_id'
  belongs_to :product, :foreign_key => 'product_id'
end

So, as you can see… a “DetailPurchase” belongs to an “Order”, but in an indirect way. And an “OrderDetail” belongs to an “Order” directly.

I need to update the attribute “quantity” of the product of “OrderDetail” using the attribute “quantity” of the product of “DetailPurchase”.

The idea is the “new” OrderDetail.quantity = “old” OrderDeatil.quantity – DetailPurchase.quantity (and obviously the product_id has to be the same)

So, i don’t know how to “write” the query using the “rails way” (could be “Model.find()”, “Model.where()”, “Model.update_attribute()”) or just use a raw sql query (by the way, I don’t know how to write or execute raw sql queries)

What do you recommend? Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T15:46:42+00:00Added an answer on May 24, 2026 at 3:46 pm

    If I understand your question, you’re trying to find the (loosely) associated OrderDetail for a given DetailPurchase. To do this, you can do:

    class DetailPurchase < ActiveRecord::Base
      belongs_to :purchase, :foreign_key => 'purchase_id'
      belongs_to :product, :foreign_key => 'product_id'
    
      # Goes up the associations to find the Order at the top of the belongs_to associations
      def parent_order
        purchase.waybill.order
      end
    
      # Given the parent_order, find the first order_detail that matches our product_id
      def order_detail
        parent_order.order_details.first.where(["product_id = ?", product_id])
      end
    end
    

    That being said, there are a few things you might want to change:

    First and foremost, you almost certainly shouldn’t have a model named ‘order’ — order is also an ActiveRecord instance method (as in ClassName.all.order("name ASC")), so you’re opening yourself up to a world of hurt.

    It also seems a bit problematic to be having one of your models updating an aggregate value in another model when it changes; you’re going to have all sorts of tricky logic to deal with when editing or deleting OrderDetails. It might make more sense to use an aggregate function for OrderDetail.quantity — in other words, set OrderDetail.original_quantity on create, then calculate OrderDetail.quantity as OrderDetail.original_quantity minus the sum of the relevant purchase detail quantities. If you want to go this route, I’d ignore the code above and add purchase_details as a scope method to OrderDetail; see the API for details.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem when trying to execute this update statement (below) using C#
I have been trying to connect to some web services using WCF but I
I am trying I have a simple one-to-many association. I am trying to update
Hey all, i have a problem with trying to get 2 forms to close
I have a problem I'm trying to solve involving interfaceing a C++ program with
I have run into a problem trying to modify a form I myself have
Ok I have this problem I'm trying to use Jquery to load a partial
Greetings, I have problem with errorPlacement, I'm trying to place the error message next
I have a problem when I'm trying to delete an image file. I always
I have this problem I've been trying to tackle for a while. I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.