123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 |
- # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
- class TimeAccountingsController < ApplicationController
- prepend_before_action { authentication_check && authorize! }
- def by_activity
- year = params[:year] || Time.zone.now.year
- month = params[:month] || Time.zone.now.month
- start_periode = Time.zone.parse("#{year}-#{month}-01")
- end_periode = start_periode.end_of_month
- records = []
- Ticket::TimeAccounting.where('created_at >= ? AND created_at <= ?', start_periode, end_periode).pluck(:ticket_id, :ticket_article_id, :time_unit, :created_by_id, :created_at).each do |record|
- records.push record
- end
- customers = {}
- organizations = {}
- agents = {}
- results = []
- records.each do |record|
- ticket = Ticket.lookup(id: record[0])
- next if !ticket
- customers[ticket.customer_id] ||= User.lookup(id: ticket.customer_id).fullname
- organizations[ticket.organization_id] ||= Organization.lookup(id: ticket.organization_id)&.name
- agents[record[3]] ||= User.lookup(id: record[3])
- result = if params[:download]
- [
- ticket.number,
- ticket.title,
- customers[ticket.customer_id] || '-',
- organizations[ticket.organization_id] || '-',
- agents[record[3]].fullname,
- agents[record[3]].login,
- record[2],
- record[4]
- ]
- else
- {
- ticket: ticket.attributes,
- time_unit: record[2],
- customer: customers[ticket.customer_id] || '-',
- organization: organizations[ticket.organization_id] || '-',
- agent: agents[record[3]].fullname,
- created_at: record[4],
- }
- end
- results.push result
- end
- if !params[:download]
- render json: results
- return
- end
- header = [
- {
- name: __('Ticket#'),
- width: 20,
- },
- {
- name: __('Title'),
- width: 20,
- },
- {
- name: "#{__('Customer')} - #{__('Name')}",
- width: 20,
- },
- {
- name: __('Organization'),
- width: 20,
- },
- {
- name: "#{__('Agent')} - #{__('Name')}",
- width: 20,
- },
- {
- name: "#{__('Agent')} - #{__('Login')}",
- width: 20,
- },
- {
- name: __('Time Units'),
- width: 10,
- data_type: 'float'
- },
- {
- name: __('Created at'),
- width: 20,
- },
- ]
- excel = ExcelSheet.new(
- title: "By Activity #{year}-#{month}",
- header: header,
- records: results,
- timezone: params[:timezone],
- locale: current_user.locale,
- )
- send_data(
- excel.content,
- filename: "by_activity-#{year}-#{month}.xls",
- type: 'application/vnd.ms-excel',
- disposition: 'attachment'
- )
- end
- def by_ticket
- year = params[:year] || Time.zone.now.year
- month = params[:month] || Time.zone.now.month
- start_periode = Time.zone.parse("#{year}-#{month}-01")
- end_periode = start_periode.end_of_month
- time_unit = {}
- Ticket::TimeAccounting.where('created_at >= ? AND created_at <= ?', start_periode, end_periode).pluck(:ticket_id, :time_unit, :created_by_id).each do |record|
- if !time_unit[record[0]]
- time_unit[record[0]] = {
- time_unit: 0,
- agent_id: record[2],
- }
- end
- time_unit[record[0]][:time_unit] += record[1]
- end
- if !params[:download]
- customers = {}
- organizations = {}
- agents = {}
- results = []
- time_unit.each do |ticket_id, local_time_unit|
- ticket = Ticket.lookup(id: ticket_id)
- next if !ticket
- customers[ticket.customer_id] ||= User.lookup(id: ticket.customer_id).fullname
- organizations[ticket.organization_id] ||= Organization.lookup(id: ticket.organization_id)&.name
- agents[local_time_unit[:agent_id]] ||= User.lookup(id: local_time_unit[:agent_id]).fullname
- result = {
- ticket: ticket.attributes,
- time_unit: local_time_unit[:time_unit],
- customer: customers[ticket.customer_id] || '-',
- organization: organizations[ticket.organization_id] || '-',
- agent: agents[local_time_unit[:agent_id]],
- }
- results.push result
- end
- render json: results
- return
- end
- ticket_ids = []
- additional_attributes = []
- additional_attributes_header = [{ display: __('Time Units'), name: 'time_unit_for_range', width: 10, data_type: 'float' }]
- time_unit.each do |ticket_id, local_time_unit|
- ticket_ids.push ticket_id
- additional_attribute = {
- time_unit_for_range: local_time_unit[:time_unit],
- }
- additional_attributes.push additional_attribute
- end
- excel = ExcelSheet::Ticket.new(
- title: "Tickets: #{year}-#{month}",
- ticket_ids: ticket_ids,
- additional_attributes: additional_attributes,
- additional_attributes_header: additional_attributes_header,
- timezone: params[:timezone],
- locale: current_user.locale,
- )
- send_data(
- excel.content,
- filename: "by_ticket-#{year}-#{month}.xls",
- type: 'application/vnd.ms-excel',
- disposition: 'attachment'
- )
- end
- def by_customer
- year = params[:year] || Time.zone.now.year
- month = params[:month] || Time.zone.now.month
- start_periode = Time.zone.parse("#{year}-#{month}-01")
- end_periode = start_periode.end_of_month
- time_unit = {}
- Ticket::TimeAccounting.where('created_at >= ? AND created_at <= ?', start_periode, end_periode).pluck(:ticket_id, :time_unit, :created_by_id).each do |record|
- time_unit[record[0]] ||= {
- time_unit: 0,
- agent_id: record[2],
- }
- time_unit[record[0]][:time_unit] += record[1]
- end
- customers = {}
- time_unit.each do |ticket_id, local_time_unit|
- ticket = Ticket.lookup(id: ticket_id)
- next if !ticket
- customers[ticket.customer_id] ||= {}
- customers[ticket.customer_id][ticket.organization_id] ||= {
- customer: User.lookup(id: ticket.customer_id).attributes,
- organization: Organization.lookup(id: ticket.organization_id)&.attributes,
- time_unit: 0,
- }
- customers[ticket.customer_id][ticket.organization_id][:time_unit] += local_time_unit[:time_unit]
- end
- results = []
- customers.each_value do |organizations|
- organizations.each_value do |content|
- results.push content
- end
- end
- if params[:download]
- header = [
- {
- name: __('Customer'),
- width: 30,
- },
- {
- name: __('Organization'),
- width: 30,
- },
- {
- name: __('Time Units'),
- width: 10,
- data_type: 'float'
- }
- ]
- records = []
- results.each do |row|
- customer_name = User.find(row[:customer]['id']).fullname
- organization_name = ''
- if row[:organization].present?
- organization_name = row[:organization]['name']
- end
- result_row = [customer_name, organization_name, row[:time_unit]]
- records.push result_row
- end
- excel = ExcelSheet.new(
- title: "By Customer #{year}-#{month}",
- header: header,
- records: records,
- timezone: params[:timezone],
- locale: current_user.locale,
- )
- send_data(
- excel.content,
- filename: "by_customer-#{year}-#{month}.xls",
- type: 'application/vnd.ms-excel',
- disposition: 'attachment'
- )
- return
- end
- render json: results
- end
- def by_organization
- year = params[:year] || Time.zone.now.year
- month = params[:month] || Time.zone.now.month
- start_periode = Time.zone.parse("#{year}-#{month}-01")
- end_periode = start_periode.end_of_month
- time_unit = {}
- Ticket::TimeAccounting.where('created_at >= ? AND created_at <= ?', start_periode, end_periode).pluck(:ticket_id, :time_unit, :created_by_id).each do |record|
- time_unit[record[0]] ||= {
- time_unit: 0,
- agent_id: record[2],
- }
- time_unit[record[0]][:time_unit] += record[1]
- end
- organizations = {}
- time_unit.each do |ticket_id, local_time_unit|
- ticket = Ticket.lookup(id: ticket_id)
- next if !ticket
- next if !ticket.organization_id
- organizations[ticket.organization_id] ||= {
- organization: Organization.lookup(id: ticket.organization_id).attributes,
- time_unit: 0,
- }
- organizations[ticket.organization_id][:time_unit] += local_time_unit[:time_unit]
- end
- results = []
- organizations.each_value do |content|
- results.push content
- end
- if params[:download]
- header = [
- {
- name: __('Organization'),
- width: 40,
- },
- {
- name: __('Time Units'),
- width: 20,
- data_type: 'float',
- }
- ]
- records = []
- results.each do |row|
- organization_name = ''
- if row[:organization].present?
- organization_name = row[:organization]['name']
- end
- result_row = [organization_name, row[:time_unit]]
- records.push result_row
- end
- excel = ExcelSheet.new(
- title: "By Organization #{year}-#{month}",
- header: header,
- records: records,
- timezone: params[:timezone],
- locale: current_user.locale,
- )
- send_data(
- excel.content,
- filename: "by_organization-#{year}-#{month}.xls",
- type: 'application/vnd.ms-excel',
- disposition: 'attachment'
- )
- return
- end
- render json: results
- end
- end
|