18 lines
372 B
Ruby
18 lines
372 B
Ruby
class Logic::InRegionOperator < Logic::BinaryOperator
|
|
def operation
|
|
:est_dans_la_region
|
|
end
|
|
|
|
def compute(champs)
|
|
l = @left.compute_value_json(champs)
|
|
r = @right.compute(champs)
|
|
|
|
return false if l.nil?
|
|
|
|
l.fetch("code_region") == r
|
|
end
|
|
|
|
def errors(type_de_champs = [])
|
|
@left.errors(type_de_champs) + @right.errors(type_de_champs)
|
|
end
|
|
end
|