Commit 1c78b240 by dongfeng

fix class name error

parent b237ce49
PATH
remote: .
specs:
crm_java_search (0.3.1)
crm_java_search (0.3.2)
GEM
remote: https://rubygems.org/
......
......@@ -41,7 +41,7 @@ module CrmJavaSearch
_proc.call(custom_field) if block_given?
return raise EntityDuplicateError.new(message)
return raise ::EntityDuplicateError.new(message)
end
end
end
......
......@@ -55,7 +55,7 @@ module CrmJavaSearch
end
def cross_field_from_setting
RelationDuplicate::RelationService.new(@organization).send("#{@entity.class.name.underscore}_cross")[@custom_field.name]
::RelationDuplicate::RelationService.new(@organization).send("#{@entity.class.name.underscore}_cross")[@custom_field.name]
end
def get_cross_fields
......
module CrmJavaSearch
VERSION = "0.3.1"
VERSION = "0.3.2"
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment