2014-02-03 19:23:00 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2015-04-27 21:27:51 +00:00
|
|
|
class Ticket
|
|
|
|
class State < ApplicationModel
|
|
|
|
belongs_to :state_type, class_name: 'Ticket::StateType'
|
|
|
|
validates :name, presence: true
|
2013-08-06 09:23:25 +00:00
|
|
|
|
2015-04-27 21:27:51 +00:00
|
|
|
latest_change_support
|
2015-02-25 20:52:14 +00:00
|
|
|
|
2013-08-06 09:23:25 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
list tickets by customer
|
|
|
|
|
|
|
|
states = Ticket::State.by_category('open') # open|closed
|
|
|
|
|
2013-08-06 09:49:56 +00:00
|
|
|
returns:
|
|
|
|
|
|
|
|
state objects
|
|
|
|
|
2013-08-06 09:23:25 +00:00
|
|
|
=end
|
|
|
|
|
2015-04-27 21:27:51 +00:00
|
|
|
def self.by_category(category)
|
|
|
|
if category == 'open'
|
|
|
|
return Ticket::State.where(
|
|
|
|
state_type_id: Ticket::StateType.where( name: ['new', 'open', 'pending reminder', 'pending action'] )
|
|
|
|
)
|
|
|
|
elsif category == 'closed'
|
|
|
|
return Ticket::State.where(
|
|
|
|
state_type_id: Ticket::StateType.where( name: ['closed'] )
|
|
|
|
)
|
|
|
|
end
|
|
|
|
raise "Unknown category '#{category}'"
|
2014-02-03 19:23:00 +00:00
|
|
|
end
|
2013-08-06 09:49:56 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
check if state is ignored for escalation
|
|
|
|
|
2014-06-08 22:01:20 +00:00
|
|
|
state = Ticket::State.lookup( :name => 'state name' )
|
2013-08-06 09:49:56 +00:00
|
|
|
|
2014-06-08 22:01:20 +00:00
|
|
|
result = state.ignore_escalation?
|
2013-08-06 09:49:56 +00:00
|
|
|
|
|
|
|
returns:
|
|
|
|
|
|
|
|
true/false
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2015-04-27 21:27:51 +00:00
|
|
|
def ignore_escalation?
|
|
|
|
ignore_escalation = ['removed', 'closed', 'merged']
|
|
|
|
return true if ignore_escalation.include?( self.name )
|
|
|
|
false
|
|
|
|
end
|
2013-08-06 09:49:56 +00:00
|
|
|
end
|
2013-06-12 15:59:58 +00:00
|
|
|
end
|