エラーメッセージとそのアプリケーショントレースは次のとおりです。
NoMethodError in Shopping::OrdersController#index
(the root of error is the application directory.)
undefined method `completed_at' for 2012-08-03 20:24:48 UTC:Time
app/models/coupon.rb:44:in `eligible?'
app/models/coupon.rb:40:in `qualified?'
app/models/coupon.rb:34:in `value'
app/models/order.rb:276:in `coupon_amount'
app/models/order.rb:260:in `find_total'
app/models/order.rb:284:in `credited_total'
app/controllers/shopping/orders_controller.rb:100:in `form_info'
app/controllers/shopping/orders_controller.rb:21:in `index'
ただし、完全なトレースを表示するように選択すると、最初の行は
activesupport (3.2.7) lib/active_support/time_with_zone.rb:328:in `method_missing'
それがコントローラーの問題なのか、active_supportの問題なのかわかりません。誰もがこれを修正する方法を知っていますか?ありがとう!
クーポン.rbで
def qualified?(item_prices, order, at = nil)
at ||= order.completed_at || Time.zone.now
item_prices.sum > minimum_value && eligible?(at)
end
def eligible?(order, at = nil)
at ||= order.completed_at || Time.zone.now
starts_at <= at && expires_at >= at
end
ありがとう。