2016-11-25 16:10:37 +00:00
|
|
|
module Import
|
|
|
|
module OTRS
|
|
|
|
module StateFactory
|
|
|
|
extend Import::TransactionFactory
|
|
|
|
|
|
|
|
# rubocop:disable Style/ModuleFunction
|
|
|
|
extend self
|
|
|
|
|
2016-12-20 15:16:09 +00:00
|
|
|
def pre_import_hook(_records, *_args)
|
2016-11-25 16:10:37 +00:00
|
|
|
backup
|
|
|
|
end
|
|
|
|
|
|
|
|
def backup
|
|
|
|
# rename states to handle not uniq issues
|
|
|
|
::Ticket::State.all.each { |state|
|
|
|
|
state.name = state.name + '_tmp'
|
|
|
|
state.save
|
|
|
|
}
|
|
|
|
end
|
2017-02-14 08:59:41 +00:00
|
|
|
|
|
|
|
def import_loop(records, *_args, &import_block)
|
|
|
|
super
|
2017-02-14 17:44:14 +00:00
|
|
|
update_attribute_settings
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_attribute_settings
|
|
|
|
return if Import::OTRS.diff?
|
|
|
|
|
|
|
|
update_attribute
|
|
|
|
update_ticket_attributes
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_attribute
|
|
|
|
update_default_create
|
|
|
|
update_default_follow_up
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_default_create
|
|
|
|
state = ::Ticket::State.find_by(
|
|
|
|
name: Import::OTRS::SysConfigFactory.postmaster_default_lookup(:state_default_create),
|
|
|
|
active: true
|
|
|
|
)
|
|
|
|
return if !state
|
|
|
|
|
|
|
|
state.default_create = true
|
|
|
|
state.callback_loop = true
|
|
|
|
|
|
|
|
state.save
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_default_follow_up
|
|
|
|
state = ::Ticket::State.find_by(
|
|
|
|
name: Import::OTRS::SysConfigFactory.postmaster_default_lookup(:state_default_follow_up),
|
|
|
|
active: true
|
|
|
|
)
|
|
|
|
return if !state
|
|
|
|
|
|
|
|
state.default_follow_up = true
|
|
|
|
state.callback_loop = true
|
|
|
|
|
|
|
|
state.save
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_ticket_attributes
|
2017-02-14 08:59:41 +00:00
|
|
|
update_ticket_state
|
|
|
|
update_ticket_pending_time
|
2017-05-16 16:11:36 +00:00
|
|
|
reseed_dependent_objects
|
2017-02-14 08:59:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update_ticket_state
|
|
|
|
agent_new = ::Ticket::State.where(
|
|
|
|
state_type_id: ::Ticket::StateType.where.not(name: %w(merged removed))
|
|
|
|
).pluck(:id)
|
|
|
|
|
|
|
|
agent_edit = ::Ticket::State.where(
|
|
|
|
state_type_id: ::Ticket::StateType.where.not(name: %w(new merged removed))
|
|
|
|
).pluck(:id)
|
|
|
|
|
|
|
|
customer_new = ::Ticket::State.where(
|
|
|
|
state_type_id: ::Ticket::StateType.where.not(name: %w(new closed))
|
|
|
|
).pluck(:id)
|
|
|
|
|
|
|
|
customer_edit = ::Ticket::State.where(
|
|
|
|
state_type_id: ::Ticket::StateType.where.not(name: %w(open closed))
|
|
|
|
).pluck(:id)
|
|
|
|
|
|
|
|
ticket_state_id = ::ObjectManager::Attribute.get(
|
|
|
|
object: 'Ticket',
|
|
|
|
name: 'state_id',
|
|
|
|
)
|
|
|
|
|
|
|
|
ticket_state_id[:data_option][:filter] = agent_new
|
|
|
|
ticket_state_id[:screens][:create_middle][:Customer] = customer_new
|
|
|
|
ticket_state_id[:screens][:edit][:Agent] = agent_edit
|
|
|
|
ticket_state_id[:screens][:edit][:Customer] = customer_edit
|
|
|
|
|
|
|
|
update_ticket_attribute(ticket_state_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_ticket_pending_time
|
|
|
|
pending_state_ids = ::Ticket::State.where(
|
|
|
|
state_type_id: ::Ticket::StateType.where(name: ['pending reminder', 'pending action'])
|
|
|
|
).pluck(:id)
|
|
|
|
|
|
|
|
ticket_pending_time = ::ObjectManager::Attribute.get(
|
|
|
|
object: 'Ticket',
|
|
|
|
name: 'pending_time',
|
|
|
|
)
|
|
|
|
|
|
|
|
ticket_pending_time[:data_option][:required_if][:state_id] = pending_state_ids
|
|
|
|
ticket_pending_time[:data_option][:required_if][:state_id] = pending_state_ids
|
|
|
|
|
|
|
|
update_ticket_attribute(ticket_pending_time)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_ticket_attribute(attribute)
|
|
|
|
::ObjectManager::Attribute.add(
|
|
|
|
object_lookup_id: attribute[:object_lookup_id],
|
|
|
|
name: attribute[:name],
|
|
|
|
display: attribute[:display],
|
|
|
|
data_type: attribute[:data_type],
|
|
|
|
data_option: attribute[:data_option],
|
|
|
|
active: attribute[:active],
|
|
|
|
screens: attribute[:screens],
|
|
|
|
force: true # otherwise _id as a name is not permitted
|
|
|
|
)
|
|
|
|
end
|
2017-05-16 16:11:36 +00:00
|
|
|
|
|
|
|
def reseed_dependent_objects
|
|
|
|
Overview.reseed
|
|
|
|
Trigger.reseed
|
|
|
|
Macro.reseed
|
|
|
|
|
|
|
|
# we don't have to re-seed the ObjectManager
|
|
|
|
# Attributes since they contain the already
|
|
|
|
# imported DynamicFields which will be lost
|
|
|
|
ObjectManager::Attribute.seed
|
|
|
|
end
|
2016-11-25 16:10:37 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|