9e42190148
Overload for_export instead
7 lines
180 B
Ruby
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
|