LoginSignup
0
0

More than 5 years have passed since last update.

number_to_currencyをdecoraterの中で使う方法。

Last updated at Posted at 2017-08-18

number_to_currencyをdecoraterの中で使う方法。

ファイルの中に
include ActionView::Helpers::NumberHelper
を読みこませる必要がある。

class WatasanDecorator < Draper::Decorator
  delegate_all
  include ActionView::Helpers::NumberHelper

    def money_total
      number_to_currency(object.user_money_total)
    end
end

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0