2016-12-19 08:59:54 +00:00
|
|
|
module Import
|
|
|
|
module Zendesk
|
|
|
|
class ObjectAttribute
|
|
|
|
class Select < Import::Zendesk::ObjectAttribute
|
|
|
|
def init_callback(object_attribte)
|
|
|
|
@data_option.merge!(
|
|
|
|
default: '',
|
|
|
|
options: options(object_attribte),
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def data_type(_attribute)
|
|
|
|
'select'
|
|
|
|
end
|
|
|
|
|
|
|
|
def options(object_attribte)
|
|
|
|
result = {}
|
2017-10-01 12:25:52 +00:00
|
|
|
object_attribte.custom_field_options.each do |entry|
|
2016-12-19 08:59:54 +00:00
|
|
|
result[ entry['value'] ] = entry['name']
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2016-12-19 08:59:54 +00:00
|
|
|
result
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|