7 lines
163 B
Ruby
7 lines
163 B
Ruby
class Champs::DecimalNumberChamp < Champ
|
|
validates :value, numericality: { allow_nil: true, allow_blank: true }
|
|
|
|
def value_for_export
|
|
value.to_f
|
|
end
|
|
end
|