Class: Compony::ModelFields::Currency

Inherits:
Base
  • Object
show all
Defined in:
lib/compony/model_fields/currency.rb

Instance Attribute Summary

Attributes inherited from Base

#extra_attrs, #model_class, #name, #schema_key

Instance Method Summary collapse

Methods inherited from Base

#association?, #initialize, #label, #multi?, #schema_line, #simpleform_input, #simpleform_input_hidden, #transform_and_join

Constructor Details

This class inherits a constructor from Compony::ModelFields::Base

Instance Method Details

#value_for(data, controller: nil, **_) ⇒ Object



4
5
6
# File 'lib/compony/model_fields/currency.rb', line 4

def value_for(data, controller: nil, **_)
  return transform_and_join(data.send(@name), controller:) { |el| controller.helpers.number_to_currency(el) }
end