2016-10-19 03:11:36 +00:00
|
|
|
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
|
2015-04-27 23:19:26 +00:00
|
|
|
class Ticket::Priority < ApplicationModel
|
|
|
|
self.table_name = 'ticket_priorities'
|
2016-01-15 17:22:57 +00:00
|
|
|
validates :name, presence: true
|
2017-02-12 17:21:03 +00:00
|
|
|
|
|
|
|
after_create :ensure_defaults
|
|
|
|
after_update :ensure_defaults
|
|
|
|
after_destroy :ensure_defaults
|
|
|
|
|
|
|
|
attr_accessor :callback_loop
|
|
|
|
|
|
|
|
def ensure_defaults
|
2017-11-23 08:09:44 +00:00
|
|
|
return true if callback_loop
|
2017-02-12 17:21:03 +00:00
|
|
|
priorities_with_default = Ticket::Priority.where(default_create: true)
|
2017-11-23 08:09:44 +00:00
|
|
|
return true if priorities_with_default.count == 1
|
2017-02-12 17:21:03 +00:00
|
|
|
|
|
|
|
if priorities_with_default.count.zero?
|
|
|
|
priority = Ticket::Priority.where(active: true).order(id: :asc).first
|
|
|
|
priority.default_create = true
|
|
|
|
priority.callback_loop = true
|
|
|
|
priority.save!
|
2017-11-23 08:09:44 +00:00
|
|
|
return true
|
2017-02-12 17:21:03 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if priorities_with_default.count > 1
|
2017-10-01 12:25:52 +00:00
|
|
|
Ticket::Priority.all.each do |local_priority|
|
2017-02-12 17:21:03 +00:00
|
|
|
next if local_priority.id == id
|
|
|
|
local_priority.default_create = false
|
|
|
|
local_priority.callback_loop = true
|
|
|
|
local_priority.save!
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2017-02-12 17:21:03 +00:00
|
|
|
end
|
2017-11-23 08:09:44 +00:00
|
|
|
true
|
2017-02-12 17:21:03 +00:00
|
|
|
end
|
2013-06-12 15:59:58 +00:00
|
|
|
end
|