--- /home/lauffer/otrs/Kernel/Modules/AdminCustomerUser.pm 2004-03-24 18:44:52.000000000 +0100 +++ Kernel/Modules/AdminCustomerUser.pm 2004-03-24 18:46:00.000000000 +0100 @@ -40,2 +40,3 @@ $Self->{CustomerUserObject} = Kernel::System::CustomerUser->new(%Param); + $Self->{CustomerTimeAccounting} = Kernel::System::CustomerTimeAccounting->new(%Param); @@ -100,2 +101,4 @@ my %UserData = $Self->{CustomerUserObject}->CustomerUserDataGet(User => $User); + # get customer time_accounting data + my %CustomerTiming = $Self->{CustomerTimeAccounting}->run(UserCustomerID => $UserData{"UserCustomerID"}); my $Output = $NavBar.$Self->{LayoutObject}->AdminCustomerUserForm( @@ -107,2 +110,3 @@ %UserData, + %CustomerTiming, );