私はRailsのに新しいですし、私は私のモデルから、このコードを単純化するためにどのような方法があるかどうだろう:モデルコードを簡素化するには?
class Item < ActiveRecord::Base
def subtotal
if price and quantity
price * quantity
end
end
def vat_rate
if price and quantity
0.19
end
end
def total_vat
if price and quantity
subtotal * vat_rate
end
end
end
私の知る限り* before_filter *は、モデル内で動作しません知っていますか?
私は思い
価格と数量が設定されていないときはnilを返しますか? – apneadiving