2018-02-13 18:18:20 +01:00
|
|
|
class Champs::YesNoChamp < Champs::CheckboxChamp
|
2018-07-25 19:34:06 +02:00
|
|
|
def search_terms
|
|
|
|
if value == 'true'
|
|
|
|
[ libelle ]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-06 16:20:11 +01:00
|
|
|
def to_s
|
|
|
|
value_for_export
|
|
|
|
end
|
|
|
|
|
2018-06-15 14:10:25 +02:00
|
|
|
private
|
|
|
|
|
|
|
|
def value_for_export
|
|
|
|
value == 'true' ? 'oui' : 'non'
|
|
|
|
end
|
2018-02-13 18:18:20 +01:00
|
|
|
end
|