Order
,安
Item
和一个
Product
模型。
class Order < ApplicationRecord
has_many :items, dependent: :destroy, inverse_of: :order
end
class Item < ApplicationRecord
belongs_to :order
belongs_to :product
end
class Product < ApplicationRecord
has_many :items
end
我要计算一下每星期有多少箱
有(
item.units/item.product.units_per_box
before_save
回调,但我无法访问嵌套属性,只能访问持久化项。
我把这个放在箱子里了
订单
型号:
before_save :calculate_boxes, on: [:create, :update]
def calculate_boxes
self.boxes = 0
self.items.each do |item|
self.boxes += item.units / item.product.units_per_box
end
end
但是,我是这么说的,它只是计算持久化项。
Cocoon gem