trabajo-afectivo/lib/stats/ticket_response_time.rb

45 lines
1.1 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::TicketResponseTime
def self.log(object, o_id)
return if object != 'Ticket'
ticket = Ticket.lookup(id: o_id)
article_created_by_id = 3
# check if response was sent by owner
return if ticket.owner_id != 1 && ticket.owner_id != article_created_by_id
# return if customer send at least
return if ticket.last_contact_customer > ticket.last_contact_agent
# TODO: only business hours
response_time_taken = ticket.last_contact_agent - ticket.last_contact_customer
(response_time_taken / 60).round
end
def self.generate(user)
items = Stats.where('action_at > ? AND action_at < ?', Time.zone.now - 7.days, Time.zone.now).where(key: 'ticket:response_time')
count_total = items.count
total = 0
count_own = 0
own = 0
items.each {|_item|
ticket = Ticket.lookup(id: data[:ticket_id])
if ticket.owner_id == user.id
count_own += 1
own += data[:time]
end
total += data[:time]
}
{
own: (own / count_own).round,
total: (total / count_total).round,
}
end
end