trabajo-afectivo/lib/stats/ticket_in_process.rb

71 lines
2.4 KiB
Ruby
Raw Normal View History

2015-09-06 22:42:11 +00:00
# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
class Stats::TicketInProcess
def self.generate(user)
2015-09-06 23:52:54 +00:00
open_state_ids = Ticket::State.by_category('work_on').map(&:id)
pending_state_ids = Ticket::State.by_category('pending_reminder').map(&:id)
2015-09-06 23:17:54 +00:00
2015-09-06 22:42:11 +00:00
# get history entries of tickets worked on today
history_object = History::Object.lookup(name: 'Ticket')
2015-09-06 23:52:54 +00:00
# get own tickets which are "workable"
own_ticket_ids = Ticket.select('id').where(
'owner_id = ? AND (state_id IN (?) OR (state_id IN (?) AND pending_time < ?))',
user.id, open_state_ids, pending_state_ids, Time.zone.now
).limit(1000).map(&:id)
2015-09-06 22:42:11 +00:00
# get all tickets where I worked on today (owner & closed today)
closed_state_ids = Ticket::State.by_category('closed').map(&:id)
closed_ticket_ids = Ticket.select('id').where(
'owner_id = ? AND state_id IN (?) AND close_time > ?',
2015-09-08 07:57:14 +00:00
user.id, closed_state_ids, Time.zone.now - 1.day
).limit(100).map(&:id)
# get all tickets which I changed to pending action
pending_action_state_ids = Ticket::State.by_category('pending_action').map(&:id)
pending_action_ticket_ids = Ticket.select('id').where(
'owner_id = ? AND state_id IN (?) AND updated_at > ?',
2015-09-08 07:57:14 +00:00
user.id, pending_action_state_ids, Time.zone.now - 1.day
).limit(100).map(&:id)
all_ticket_ids = own_ticket_ids.concat(closed_ticket_ids).concat(pending_action_ticket_ids).uniq
2015-09-06 23:52:54 +00:00
# get count where user worked on
2015-09-06 22:42:11 +00:00
count = History.select('DISTINCT(o_id)').where(
'histories.created_at >= ? AND histories.history_object_id = ? AND histories.created_by_id = ? AND histories.o_id IN (?)', Time.zone.now - 1.day, history_object.id, user.id, all_ticket_ids
2015-09-06 22:42:11 +00:00
).count
total = all_ticket_ids.count
2015-09-06 22:42:11 +00:00
in_process_precent = 0
state = 'supergood'
average_in_percent = '-'
2015-09-07 00:08:15 +00:00
if total != 0
2015-09-06 22:42:11 +00:00
in_process_precent = (count * 1000) / ((total * 1000) / 100)
if in_process_precent >= 75
2015-09-06 22:42:11 +00:00
state = 'supergood'
elsif in_process_precent >= 55
2015-09-06 22:42:11 +00:00
state = 'good'
elsif in_process_precent >= 40
2015-09-06 22:42:11 +00:00
state = 'ok'
elsif in_process_precent >= 20
2015-09-06 22:42:11 +00:00
state = 'bad'
2015-09-07 00:08:15 +00:00
else
2015-09-06 22:42:11 +00:00
state = 'superbad'
end
end
{
used_for_average: in_process_precent,
average_per_agent: average_in_percent,
2015-09-06 22:42:11 +00:00
state: state,
in_process: count,
percent: in_process_precent,
total: total,
}
end
end