如何更好地计算每个行项目的总成本,然后计算所有总成本?我有这样的数据库:文章在我有价格的地方存在表格,但如何显示价格*数量?最好在控制器中做?或在模型中,但在模型中,如何做到这一点,注意,在数据库中我只有价格,数量在行项目中给出:我想要这样的东西:
class LineItem < ActiveRecord::Base
belongs_to :article
belongs_to :cart
def total_price
existence.PRICEM * quantity
end
end