demarches-normaliennes/app/models/champs/decimal_number_champ.rb

8 lines
163 B
Ruby
Raw Normal View History

2018-10-31 19:48:03 +01:00
class Champs::DecimalNumberChamp < Champ
2018-11-29 14:35:42 +01:00
validates :value, numericality: { allow_nil: true, allow_blank: true }
2018-10-31 19:48:03 +01:00
def value_for_export
value.to_f
end
end