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
|
# --
# Copyright (C) 2001-2021 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;
|