demarches-normaliennes/app/models/champs/decimal_number_champ.rb
2019-01-08 12:32:27 +01:00

11 lines
239 B
Ruby

class Champs::DecimalNumberChamp < Champ
validates :value, numericality: { allow_nil: true, allow_blank: true }
def for_export
value.present? ? value.to_f : nil
end
def for_api
value.present? ? value.to_f : nil
end
end