1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
# --
# Kernel/System/Stats/AccountedTime.pm - stats module
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: AccountedTime.pm,v 1.3 2005/08/26 15:55:29 martin Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
package Kernel::System::Stats::AccountedTime;
use strict;
use Date::Pcalc qw(Days_in_Month);
use Kernel::System::CustomerUser;
use vars qw($VERSION);
$VERSION = '$Revision: 1.3 $ ';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
# --
sub new {
my $Type = shift;
my %Param = @_;
# allocate new hash for object
my $Self = {};
bless ($Self, $Type);
# get common opjects
foreach (keys %Param) {
$Self->{$_} = $Param{$_};
}
# check all needed objects
foreach (qw(DBObject ConfigObject LogObject TicketObject)) {
die "Got no $_" if (!$Self->{$_});
}
$Self->{CustomerObject} = Kernel::System::CustomerUser->new(%Param);
return $Self;
}
# --
sub Param {
my $Self = shift;
my @Params = ();
# get current time
my ($s,$m,$h, $D,$M,$Y) = $Self->{TimeObject}->SystemTime2Date(
SystemTime => $Self->{TimeObject}->SystemTime(),
);
# get one month bevore
if ($M == 1) {
$M = 12;
$Y = $Y - 1;
}
else {
$M = $M -1;
}
# create possible time selections
my %Year = ();
foreach ($Y-10..$Y+1) {
$Year{$_} = $_;
}
my %Month = ();
foreach (1..12) {
my $Tmp = sprintf("%02d", $_);
$Month{$_} = $Tmp;
}
push (@Params, {
Frontend => 'Year',
Name => 'Year',
Multiple => 0,
Size => 0,
SelectedID => $Y,
Data => {
%Year,
},
},
);
push (@Params, {
Frontend => 'Month',
Name => 'Month',
Multiple => 0,
Size => 0,
SelectedID => $M,
Data => {
%Month,
},
},
);
return @Params;
}
# --
sub Run {
my $Self = shift;
my %Param = @_;
$Param{Month} = sprintf("%02d", $Param{Month});
my $Title = "$Param{Year}-$Param{Month}";
my @HeadData = ('Customer', 'CustomerID', 'Ticket#', 'Time');
my @Data = ();
# get accounted time
my $Days = Days_in_Month($Param{Year},$Param{Month});
my @Tickets = ();
my $SQL = "SELECT ticket_id, sum(time_unit) FROM ".
" time_accounting ".
" WHERE ".
" create_time >= '$Param{Year}-$Param{Month}-01 00:00:01'".
" AND " .
" create_time <= '$Param{Year}-$Param{Month}-$Days 23:59:59'".
" GROUP BY ticket_id ";
$Self->{DBObject}->Prepare(SQL => $SQL);
while (my @Row = $Self->{DBObject}->FetchrowArray()) {
push (@Tickets, \@Row);
}
# get customers
my %Accounted = ();
foreach my $Row (@Tickets) {
my %Ticket = $Self->{TicketObject}->TicketGet(TicketID => $Row->[0]);
if (!defined($Ticket{CustomerID})) {
$Ticket{CustomerID} = '-';
}
if (!defined($Ticket{CustomerUserID})) {
$Ticket{CustomerUserID} = '-';
}
my $Customer = $Self->{CustomerObject}->CustomerName(
UserLogin => $Ticket{CustomerUserID},
) || '-';
$Accounted{"$Ticket{CustomerUserID}::$Ticket{CustomerID}"}->{Time} = ($Accounted{"$Ticket{CustomerUserID}::$Ticket{CustomerID}"}->{Time}||0) + $Row->[1];
$Accounted{"$Ticket{CustomerUserID}::$Ticket{CustomerID}"}->{CustomerID} = $Ticket{CustomerID};
$Accounted{"$Ticket{CustomerUserID}::$Ticket{CustomerID}"}->{Customer} = $Customer;
if ($Accounted{"$Ticket{CustomerUserID}::$Ticket{CustomerID}"}->{Ticket}) {
$Accounted{"$Ticket{CustomerUserID}::$Ticket{CustomerID}"}->{Ticket} .= ", ";
}
$Accounted{"$Ticket{CustomerUserID}::$Ticket{CustomerID}"}->{Ticket} .= $Ticket{TicketNumber};
}
foreach (sort keys %Accounted) {
if ($Accounted{$_}->{Time}) {
push (@Data, [
$Accounted{$_}->{Customer},
$Accounted{$_}->{CustomerID},
$Accounted{$_}->{Ticket},
$Accounted{$_}->{Time},
],
);
}
}
return ([$Title],[@HeadData], @Data);
}
# --
1;
|