2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2016-11-25 16:10:37 +00:00
|
|
|
module Import
|
|
|
|
module OTRS
|
|
|
|
class DynamicField
|
|
|
|
class Checkbox < Import::OTRS::DynamicField
|
|
|
|
def init_callback(dynamic_field)
|
|
|
|
@attribute_config.merge!(
|
|
|
|
data_type: 'boolean',
|
|
|
|
data_option: {
|
2018-12-19 17:31:51 +00:00
|
|
|
default: dynamic_field['Config']['DefaultValue'] == '1',
|
|
|
|
options: {
|
2016-11-25 16:10:37 +00:00
|
|
|
true => 'Yes',
|
|
|
|
false => 'No',
|
|
|
|
},
|
2017-08-23 14:41:01 +00:00
|
|
|
null: true,
|
2016-11-25 16:10:37 +00:00
|
|
|
translate: true,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|