Files
scripts/Perl OTRS/Kernel/Output/HTML/CustomerUser/OverviewAddressBook.pm
2024-10-14 00:08:40 +02:00

155 lines
4.3 KiB
Perl

# --
# Copyright (C) 2001-2019 OTRS AG, https://otrs.com/
# --
# 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 https://www.gnu.org/licenses/gpl-3.0.txt.
# --
package Kernel::Output::HTML::CustomerUser::OverviewAddressBook;
use strict;
use warnings;
our @ObjectDependencies = (
'Kernel::Output::HTML::Layout',
'Kernel::System::CustomerUser',
'Kernel::System::Log',
'Kernel::System::JSON',
);
sub new {
my ( $Type, %Param ) = @_;
my $Self = \%Param;
bless( $Self, $Type );
return $Self;
}
sub Run {
my ( $Self, %Param ) = @_;
for my $Needed (qw(PageShown StartHit)) {
if ( !$Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return;
}
}
if ( !$Param{CustomerUserIDs} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => 'Need CustomerUserIDs!',
);
return;
}
my $LayoutObject = $Kernel::OM->Get('Kernel::Output::HTML::Layout');
my @IDs = @{ $Param{CustomerUserIDs} };
my @ShowColumns;
if ( $Param{ShowColumns} && ref $Param{ShowColumns} eq 'ARRAY' ) {
@ShowColumns = @{ $Param{ShowColumns} };
}
my $CustomerUserObject = $Kernel::OM->Get('Kernel::System::CustomerUser');
my @RecordHeaderColumns;
# Build the column header for the output in the result page.
if (@ShowColumns) {
for my $Column (@ShowColumns) {
my $CSS = 'OverviewHeader';
my $OrderBy;
# Set the correct Set CSS class and order by link.
if ( $Param{SortBy} && ( $Param{SortBy} eq $Column ) ) {
if ( $Param{OrderBy} && ( $Param{OrderBy} eq 'Up' ) ) {
$OrderBy = 'Down';
$CSS .= ' SortAscendingLarge';
}
else {
$OrderBy = 'Up';
$CSS .= ' SortDescendingLarge';
}
}
else {
$OrderBy = 'Up';
}
# Get more information from the current field for the output (e.g. label).
my %FieldConfig = $CustomerUserObject->GetFieldConfig(
FieldName => $Column,
);
push @RecordHeaderColumns, {
Name => $Column,
Label => $FieldConfig{Label},
CSS => $CSS,
OrderBy => $OrderBy,
};
}
}
my @RecordDataColumns;
my $Output = '';
my $Counter = 0;
# Show customer user if there are some given from the search result.
if (@IDs) {
ID:
for my $ID (@IDs) {
$Counter++;
if ( $Counter >= $Param{StartHit} && $Counter < ( $Param{PageShown} + $Param{StartHit} ) ) {
my %CustomerUser = $CustomerUserObject->CustomerUserDataGet(
User => $ID,
);
next ID if !%CustomerUser;
# Disable the already selected customer user in the result table.
if ( $Param{LookupExcludeUserLogins}->{$ID} || !$CustomerUser{ $Param{CustomerTicketTextField} } ) {
$CustomerUser{Disabled} = 1;
}
# Set the checkbox for the already selected customer user to 'checked'.
if ( $Param{LookupExcludeUserLogins}->{$ID} ) {
$CustomerUser{AlreadySelected} = 1;
}
push @RecordDataColumns, {
%CustomerUser,
};
}
}
}
# Create the recipient json string for the output in the input field.
$Param{RecipientsJSON} = $Kernel::OM->Get('Kernel::System::JSON')->Encode(
Data => $Param{Recipients},
);
$Output .= $LayoutObject->Output(
TemplateFile => 'AgentCustomerUserAddressBookOverview',
Data => {
%Param,
RecordHeaderColumns => \@RecordHeaderColumns,
RecordDataColumns => \@RecordDataColumns,
Type => $Self->{ViewType},
ColumnCount => scalar @ShowColumns + 1,
},
);
return $Output;
}
1;