demarches-normaliennes/app/models/champs/decimal_number_champ.rb
gregoirenovel 9e42190148 Remove the proxy value_for_export method
Overload for_export instead
2019-01-08 12:32:26 +01:00

7 lines
180 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
end