0
私は3つのモデルがあります。場所、製品、在庫。3つのモデルから値を取得し、構造を構築する方法
私は、各製品の各場所の在庫に関するレポートを作成しようとしています。
だから私はすべての場所
のための最善の方法はそれについて行く何という 製品数量 製品B数量B
てみませんか。この
場所のようなものを目指していますか?
モデル
class Product < ApplicationRecord
has_many :stocks, dependent: :destroy
has_many :locations, :through => :stocks
end
class Location < ApplicationRecord
has_many :stocks
has_many :products, :through => :stocks
end
class Stock < ApplicationRecord
belongs_to :location, optional: true
belongs_to :product, optional: true
end