我希望能够使用模型父级设置的货币动态设置模型上的货币。
像这样:
class Event < ActiveRecord::Base
belongs_to :edition
monetize :price_cents, :with_currency => proc { |event| event.edition.currency }
event.edition.currency 从模型的父级返回一个符号......例如:gbp
但它不起作用。默认约定是:
monetize :bonus_cents, :with_currency => :gbp
哪个效果很好......有什么想法吗?