Sha256: fafccf824b401c9f0507757fa5b9586be9b0961660a0531854976c1590c4b75d
Contents?: true
Size: 915 Bytes
Versions: 91
Compression:
Stored size: 915 Bytes
Contents
module Effective module FormInputs class PriceField < Effective::FormInput def build_input(&block) @builder.hidden_field(name, value: price, id: tag_id + '_value_as_integer') + @template.text_field_tag(name, @template.number_to_currency(currency, unit: ''), options[:input].merge(id: tag_id, name: nil)) end def input_group_options { input_group: { class: 'input-group' }, prepend: content_tag(:span, icon('dollar-sign'), class: 'input-group-text') } end def input_html_options { class: 'form-control effective_price', autocomplete: 'off' } end private def price return nil unless value value.kind_of?(Integer) ? value : ('%.2f' % (value / 100.0)) end def currency return nil unless value value.kind_of?(Integer) ? ('%.2f' % (value / 100.0)) : value end end end end
Version data entries
91 entries across 91 versions & 1 rubygems