mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 03:40:49 +08:00
13 lines
306 B
Ruby
13 lines
306 B
Ruby
module NumberDisplayHelper
|
|
extend ActiveSupport::Concern
|
|
|
|
module ClassMethods
|
|
def number_display_methods(*columns, **opts)
|
|
columns.each do |column|
|
|
define_method "display_#{column}" do
|
|
number_to_currency(column.to_f, opts)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |