0
I have this code:
report = report.Where(....)
money = get_money report
def get_money(report, count)
price= Report
.where('Month(date) =? and Year(date) =? ',
report.date.month, report.date.year).first
money= price.presence ? price.value.to_f/count: hardcoded_default__value
return royalty_value
end
このget_money関数をレポートモデルに移動するにはどうすればよいですか?関数をモデルレールに移動する
class Report < ActiveRecord::Base
あなたのコードにエラーがあるので、それはあなたの意図はここに何があるかは明らかではありません。 '#get_money'の目的は何で、' report'オブジェクトの中に 'price'があり、' Report'は '#value'メソッドを持っていますか? – EJ2015