/usr/share/otrs/Kernel/Modules/AgentTicketService.pm is in otrs2 6.0.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 | # --
# Copyright (C) 2001-2018 OTRS AG, http://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
package Kernel::Modules::AgentTicketService;
use strict;
use warnings;
use Kernel::System::VariableCheck qw(:all);
use Kernel::Language qw(Translatable);
our $ObjectManagerDisabled = 1;
sub new {
my ( $Type, %Param ) = @_;
# allocate new hash for object
my $Self = {%Param};
bless( $Self, $Type );
# set debug
$Self->{Debug} = 0;
return $Self;
}
sub Run {
my ( $Self, %Param ) = @_;
# get needed objects
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');
my $LayoutObject = $Kernel::OM->Get('Kernel::Output::HTML::Layout');
my $ParamObject = $Kernel::OM->Get('Kernel::System::Web::Request');
# check if feature is active
my $Access = $ConfigObject->Get('Ticket::Service');
if ( !$Access ) {
$LayoutObject->FatalError(
Message => Translatable('Feature not enabled!'),
);
}
# get config param
my $Config = $ConfigObject->Get("Ticket::Frontend::$Self->{Action}");
my $SortBy = $ParamObject->GetParam( Param => 'SortBy' )
|| $Config->{'SortBy::Default'}
|| 'Age';
my $OrderBy = $ParamObject->GetParam( Param => 'OrderBy' )
|| $Config->{'Order::Default'}
|| 'Up';
# get session object
my $SessionObject = $Kernel::OM->Get('Kernel::System::AuthSession');
# store last queue screen
$SessionObject->UpdateSessionID(
SessionID => $Self->{SessionID},
Key => 'LastScreenOverview',
Value => $Self->{RequestedURL},
);
# store last screen
$SessionObject->UpdateSessionID(
SessionID => $Self->{SessionID},
Key => 'LastScreenView',
Value => $Self->{RequestedURL},
);
# get user object
my $UserObject = $Kernel::OM->Get('Kernel::System::User');
# get filters stored in the user preferences
my %Preferences = $UserObject->GetPreferences(
UserID => $Self->{UserID},
);
my $StoredFiltersKey = 'UserStoredFilterColumns-' . $Self->{Action};
my $JSONObject = $Kernel::OM->Get('Kernel::System::JSON');
my $StoredFilters = $JSONObject->Decode(
Data => $Preferences{$StoredFiltersKey},
);
# delete stored filters if needed
if ( $ParamObject->GetParam( Param => 'DeleteFilters' ) ) {
$StoredFilters = {};
}
# get the column filters from the web request or user preferences
my %ColumnFilter;
my %GetColumnFilter;
COLUMNNAME:
for my $ColumnName (
qw(Owner Responsible State Queue Priority Type Lock Service SLA CustomerID CustomerUserID)
)
{
# get column filter from web request
my $FilterValue = $ParamObject->GetParam( Param => 'ColumnFilter' . $ColumnName )
|| '';
# if filter is not present in the web request, try with the user preferences
if ( $FilterValue eq '' ) {
if ( $ColumnName eq 'CustomerID' ) {
$FilterValue = $StoredFilters->{$ColumnName}->[0] || '';
}
elsif ( $ColumnName eq 'CustomerUserID' ) {
$FilterValue = $StoredFilters->{CustomerUserLogin}->[0] || '';
}
else {
$FilterValue = $StoredFilters->{ $ColumnName . 'IDs' }->[0] || '';
}
}
next COLUMNNAME if $FilterValue eq '';
next COLUMNNAME if $FilterValue eq 'DeleteFilter';
if ( $ColumnName eq 'CustomerID' ) {
push @{ $ColumnFilter{$ColumnName} }, $FilterValue;
push @{ $ColumnFilter{ $ColumnName . 'Raw' } }, $FilterValue;
$GetColumnFilter{$ColumnName} = $FilterValue;
}
elsif ( $ColumnName eq 'CustomerUserID' ) {
push @{ $ColumnFilter{CustomerUserLogin} }, $FilterValue;
push @{ $ColumnFilter{CustomerUserLoginRaw} }, $FilterValue;
$GetColumnFilter{$ColumnName} = $FilterValue;
}
else {
push @{ $ColumnFilter{ $ColumnName . 'IDs' } }, $FilterValue;
$GetColumnFilter{$ColumnName} = $FilterValue;
}
}
# get all dynamic fields
$Self->{DynamicField} = $Kernel::OM->Get('Kernel::System::DynamicField')->DynamicFieldListGet(
Valid => 1,
ObjectType => ['Ticket'],
);
DYNAMICFIELD:
for my $DynamicFieldConfig ( @{ $Self->{DynamicField} } ) {
next DYNAMICFIELD if !IsHashRefWithData($DynamicFieldConfig);
next DYNAMICFIELD if !$DynamicFieldConfig->{Name};
# get filter from web request
my $FilterValue = $ParamObject->GetParam(
Param => 'ColumnFilterDynamicField_' . $DynamicFieldConfig->{Name}
);
# if no filter from web request, try from user preferences
if ( !defined $FilterValue || $FilterValue eq '' ) {
$FilterValue = $StoredFilters->{ 'DynamicField_' . $DynamicFieldConfig->{Name} }->{Equals};
}
next DYNAMICFIELD if !defined $FilterValue;
next DYNAMICFIELD if $FilterValue eq '';
next DYNAMICFIELD if $FilterValue eq 'DeleteFilter';
$ColumnFilter{ 'DynamicField_' . $DynamicFieldConfig->{Name} } = {
Equals => $FilterValue,
};
$GetColumnFilter{ 'DynamicField_' . $DynamicFieldConfig->{Name} } = $FilterValue;
}
# get service param
my $ServiceID = $ParamObject->GetParam( Param => 'ServiceID' ) || 0;
# if we have only one service, check if there
# is a setting in Config.pm for sorting
if ( !$OrderBy ) {
if ( $Config->{ServiceSort} ) {
if ( defined $Config->{ServiceSort}->{$ServiceID} ) {
if ( $Config->{ServiceSort}->{$ServiceID} ) {
$OrderBy = 'Down';
}
else {
$OrderBy = 'Up';
}
}
}
}
if ( !$OrderBy ) {
$OrderBy = $Config->{'Order::Default'} || 'Up';
}
# build NavigationBar & to get the output faster!
my $Refresh = '';
if ( $Self->{UserRefreshTime} ) {
$Refresh = 60 * $Self->{UserRefreshTime};
}
my $Output;
if ( $Self->{Subaction} ne 'AJAXFilterUpdate' ) {
$Output = $LayoutObject->Header(
Refresh => $Refresh,
);
$Output .= $LayoutObject->NavigationBar();
}
# viewable locks
my @ViewableLockIDs = $Kernel::OM->Get('Kernel::System::Lock')->LockViewableLock( Type => 'ID' );
# viewable states
my @ViewableStateIDs = $Kernel::OM->Get('Kernel::System::State')->StateGetStatesByType(
Type => 'Viewable',
Result => 'ID',
);
# get permissions
my $Permission = 'rw';
if ( $Config->{ViewAllPossibleTickets} ) {
$Permission = 'ro';
}
# sort on default by using both (Priority, Age) else use only one sort argument
my %Sort;
# get if search result should be pre-sorted by priority
my $PreSortByPriority = $Config->{'PreSort::ByPriority'};
if ( !$PreSortByPriority ) {
%Sort = (
SortBy => $SortBy,
OrderBy => $OrderBy,
);
}
else {
%Sort = (
SortBy => [ 'Priority', $SortBy ],
OrderBy => [ 'Down', $OrderBy ],
);
}
# get all queues the agent is allowed to see
my %ViewableQueues = $Kernel::OM->Get('Kernel::System::Queue')->GetAllQueues(
UserID => $Self->{UserID},
Type => 'ro',
);
my @ViewableQueueIDs = sort keys %ViewableQueues;
# get service object
my $ServiceObject = $Kernel::OM->Get('Kernel::System::Service');
# get custom services
my @MyServiceIDs = $ServiceObject->GetAllCustomServices( UserID => $Self->{UserID} );
my @ViewableServiceIDs;
if ( !$ServiceID ) {
@ViewableServiceIDs = @MyServiceIDs;
}
else {
@ViewableServiceIDs = ($ServiceID);
}
my %Filters = (
All => {
Name => Translatable('All tickets'),
Prio => 1000,
Search => {
StateIDs => \@ViewableStateIDs,
QueueIDs => \@ViewableQueueIDs,
ServiceIDs => \@ViewableServiceIDs,
%Sort,
Permission => $Permission,
UserID => $Self->{UserID},
},
},
Unlocked => {
Name => Translatable('Available tickets'),
Prio => 1001,
Search => {
LockIDs => \@ViewableLockIDs,
StateIDs => \@ViewableStateIDs,
QueueIDs => \@ViewableQueueIDs,
ServiceIDs => \@ViewableServiceIDs,
%Sort,
Permission => $Permission,
UserID => $Self->{UserID},
},
},
);
# get filter param
my $Filter = $ParamObject->GetParam( Param => 'Filter' ) || 'Unlocked';
# check if filter is valid
if ( !$Filters{$Filter} ) {
$LayoutObject->FatalError(
Message => $LayoutObject->{LanguageObject}->Translate( 'Invalid Filter: %s!', $Filter ),
);
}
# get view param
my $View = $ParamObject->GetParam( Param => 'View' ) || '';
# lookup latest used view mode
if ( !$View && $Self->{ 'UserTicketOverview' . $Self->{Action} } ) {
$View = $Self->{ 'UserTicketOverview' . $Self->{Action} };
}
# otherwise use Preview as default as in LayoutTicket
$View ||= 'Preview';
# Check if selected view is available.
my $Backends = $ConfigObject->Get('Ticket::Frontend::Overview');
if ( !$Backends->{$View} ) {
# Try to find fallback, take first configured view mode.
KEY:
for my $Key ( sort keys %{$Backends} ) {
$View = $Key;
last KEY;
}
}
# get personal page shown count
my $PageShownPreferencesKey = 'UserTicketOverview' . $View . 'PageShown';
my $PageShown = $Self->{$PageShownPreferencesKey} || 10;
# do shown tickets lookup
my $Limit = 10_000;
my $ElementChanged = $ParamObject->GetParam( Param => 'ElementChanged' ) || '';
my $HeaderColumn = $ElementChanged;
$HeaderColumn =~ s{\A ColumnFilter }{}msxg;
# get data (viewable tickets...)
# search all tickets
my @ViewableTickets;
my @OriginalViewableTickets;
# get ticket object
my $TicketObject = $Kernel::OM->Get('Kernel::System::Ticket');
if ( @ViewableQueueIDs && @ViewableServiceIDs ) {
# get ticket values
if (
!IsStringWithData($HeaderColumn)
|| (
IsStringWithData($HeaderColumn)
&& (
$ConfigObject->Get('OnlyValuesOnTicket') ||
$HeaderColumn eq 'CustomerID' ||
$HeaderColumn eq 'CustomerUserID'
)
)
)
{
@OriginalViewableTickets = $TicketObject->TicketSearch(
%{ $Filters{$Filter}->{Search} },
Limit => $Limit,
Result => 'ARRAY',
);
# get start param
my $Start = $ParamObject->GetParam( Param => 'StartHit' ) || 1;
@ViewableTickets = $TicketObject->TicketSearch(
%{ $Filters{$Filter}->{Search} },
%ColumnFilter,
Limit => $Start + $PageShown - 1,
Result => 'ARRAY',
);
}
}
if ( $Self->{Subaction} eq 'AJAXFilterUpdate' ) {
my $FilterContent = $LayoutObject->TicketListShow(
FilterContentOnly => 1,
HeaderColumn => $HeaderColumn,
ElementChanged => $ElementChanged,
OriginalTicketIDs => \@OriginalViewableTickets,
Action => 'AgentTicketService',
Env => $Self,
View => $View,
EnableColumnFilters => 1,
);
if ( !$FilterContent ) {
$LayoutObject->FatalError(
Message => $LayoutObject->{LanguageObject}
->Translate( 'Can\'t get filter content data of %s!', $HeaderColumn ),
);
}
return $LayoutObject->Attachment(
ContentType => 'application/json; charset=' . $LayoutObject->{Charset},
Content => $FilterContent,
Type => 'inline',
NoCache => 1,
);
}
else {
# store column filters
my $StoredFilters = \%ColumnFilter;
my $StoredFiltersKey = 'UserStoredFilterColumns-' . $Self->{Action};
$UserObject->SetPreferences(
UserID => $Self->{UserID},
Key => $StoredFiltersKey,
Value => $JSONObject->Encode( Data => $StoredFilters ),
);
}
my $CountTotal = 0;
my %NavBarFilter;
for my $FilterColumn ( sort keys %Filters ) {
my $Count = 0;
if ( @ViewableQueueIDs && @ViewableServiceIDs ) {
$Count = $TicketObject->TicketSearch(
%{ $Filters{$FilterColumn}->{Search} },
%ColumnFilter,
Result => 'COUNT',
) || 0;
}
if ( $FilterColumn eq $Filter ) {
$CountTotal = $Count;
}
$NavBarFilter{ $Filters{$FilterColumn}->{Prio} } = {
Count => $Count,
Filter => $FilterColumn,
%{ $Filters{$FilterColumn} },
};
}
my $ColumnFilterLink = '';
COLUMNNAME:
for my $ColumnName ( sort keys %GetColumnFilter ) {
next COLUMNNAME if !$ColumnName;
next COLUMNNAME if !defined $GetColumnFilter{$ColumnName};
next COLUMNNAME if $GetColumnFilter{$ColumnName} eq '';
$ColumnFilterLink
.= ';' . $LayoutObject->Ascii2Html( Text => 'ColumnFilter' . $ColumnName )
. '=' . $LayoutObject->Ascii2Html( Text => $GetColumnFilter{$ColumnName} )
}
my $LinkPage = 'ServiceID='
. $LayoutObject->Ascii2Html( Text => $ServiceID )
. ';Filter='
. $LayoutObject->Ascii2Html( Text => $Filter )
. ';View=' . $LayoutObject->Ascii2Html( Text => $View )
. ';SortBy=' . $LayoutObject->Ascii2Html( Text => $SortBy )
. ';OrderBy=' . $LayoutObject->Ascii2Html( Text => $OrderBy )
. $ColumnFilterLink
. ';';
my $LinkSort = 'ServiceID='
. $LayoutObject->Ascii2Html( Text => $ServiceID )
. ';View=' . $LayoutObject->Ascii2Html( Text => $View )
. ';Filter='
. $LayoutObject->Ascii2Html( Text => $Filter )
. $ColumnFilterLink
. ';';
my $LinkFilter = 'ServiceID='
. $LayoutObject->Ascii2Html( Text => $ServiceID )
. ';SortBy=' . $LayoutObject->Ascii2Html( Text => $SortBy )
. ';OrderBy=' . $LayoutObject->Ascii2Html( Text => $OrderBy )
. ';View=' . $LayoutObject->Ascii2Html( Text => $View )
. ';';
# get all services
my %AllServices = $ServiceObject->ServiceList(
Valid => 0,
UserID => $Self->{UserID},
);
# store the ticket count data for each service
my %Data;
my $Count = 0;
# get the agent custom services count
if (@MyServiceIDs) {
$Count = $TicketObject->TicketSearch(
LockIDs => \@ViewableLockIDs,
StateIDs => \@ViewableStateIDs,
QueueIDs => \@ViewableQueueIDs,
ServiceIDs => \@MyServiceIDs,
Permission => $Permission,
UserID => $Self->{UserID},
Result => 'COUNT',
) || 0;
}
# add the count for the custom services
push @{ $Data{Services} }, {
Count => $Count,
Service => 'CustomService',
ServiceID => 0,
};
# remember the number shown tickets for the custom services
$Data{TicketsShown} = $Count || 0;
SERVICEID:
for my $ServiceIDItem ( sort { $AllServices{$a} cmp $AllServices{$b} } keys %AllServices ) {
$Count = $TicketObject->TicketSearch(
LockIDs => \@ViewableLockIDs,
StateIDs => \@ViewableStateIDs,
QueueIDs => \@ViewableQueueIDs,
ServiceIDs => [$ServiceIDItem],
Permission => $Permission,
UserID => $Self->{UserID},
Result => 'COUNT',
) || 0;
next SERVICEID if !$Count;
push @{ $Data{Services} }, {
Count => $Count,
Service => $AllServices{$ServiceIDItem},
ServiceID => $ServiceIDItem,
};
# remember the number shown tickets for the selected service
if ( $ServiceID && $ServiceID eq $ServiceIDItem ) {
$Data{TicketsShown} = $Count || 0;
}
}
my $LastColumnFilter = $ParamObject->GetParam( Param => 'LastColumnFilter' ) || '';
if ( !$LastColumnFilter && $ColumnFilterLink ) {
# is planned to have a link to go back here
$LastColumnFilter = 1;
}
my %NavBar = $Self->_MaskServiceView(
%Data,
ServiceID => $ServiceID,
AllServices => \%AllServices,
);
# show tickets
$Output .= $LayoutObject->TicketListShow(
Filter => $Filter,
Filters => \%NavBarFilter,
FilterLink => $LinkFilter,
DataInTheMiddle => $LayoutObject->Output(
TemplateFile => 'AgentTicketService',
Data => \%NavBar,
),
TicketIDs => \@ViewableTickets,
OriginalTicketIDs => \@OriginalViewableTickets,
GetColumnFilter => \%GetColumnFilter,
LastColumnFilter => $LastColumnFilter,
Action => 'AgentTicketService',
Total => $CountTotal,
RequestedURL => $Self->{RequestedURL},
NavBar => \%NavBar,
View => $View,
Bulk => 1,
TitleName => Translatable('Service View'),
TitleValue => $NavBar{SelectedService},
Env => $Self,
LinkPage => $LinkPage,
LinkSort => $LinkSort,
LinkFilter => $LinkFilter,
OrderBy => $OrderBy,
SortBy => $SortBy,
EnableColumnFilters => 1,
ColumnFilterForm => {
ServiceID => $ServiceID || '',
Filter => $Filter || '',
},
# do not print the result earlier, but return complete content
Output => 1,
);
# get page footer
$Output .= $LayoutObject->Footer() if $Self->{Subaction} ne 'AJAXFilterUpdate';
return $Output;
}
sub _MaskServiceView {
my ( $Self, %Param ) = @_;
# get needed objects
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');
my $LayoutObject = $Kernel::OM->Get('Kernel::Output::HTML::Layout');
my $CustomService
= $LayoutObject->{LanguageObject}->Translate( $ConfigObject->Get('Ticket::CustomService') || 'My Services' );
my $Config = $ConfigObject->Get("Ticket::Frontend::$Self->{Action}");
my $ServiceID = $Param{ServiceID} || 0;
my @ServicesNew = @{ $Param{Services} };
my %AllServices = %{ $Param{AllServices} };
my %Counter;
my %UsedService;
my @ListedServices;
my $Level = 0;
$Self->{HighlightAge1} = $Config->{HighlightAge1};
$Self->{HighlightAge2} = $Config->{HighlightAge2};
$Self->{Blink} = $Config->{Blink};
$Param{SelectedService} = $AllServices{$ServiceID} || $CustomService;
my @MetaService = split /::/, $Param{SelectedService};
$Level = $#MetaService + 2;
# prepare shown Services (short names)
# - get Service total count -
for my $ServiceRef (@ServicesNew) {
push @ListedServices, $ServiceRef;
my %Service = %$ServiceRef;
my @Service = split /::/, $Service{Service};
# remember counted/used Services
$UsedService{ $Service{Service} } = 1;
# move to short Service names
my $ServiceName = '';
for my $Index ( 0 .. $#Service ) {
if ( !$ServiceName ) {
$ServiceName .= $Service[$Index];
}
else {
$ServiceName .= '::' . $Service[$Index];
}
if ( !$Counter{$ServiceName} ) {
$Counter{$ServiceName} = 0;
}
$Counter{$ServiceName} = $Counter{$ServiceName} + $Service{Count};
if ( $Counter{$ServiceName} && !$Service{$ServiceName} && !$UsedService{$ServiceName} )
{
my %Hash;
$Hash{Service} = $ServiceName;
$Hash{Count} = $Counter{$ServiceName};
for my $ServiceID ( sort keys %AllServices ) {
if ( $AllServices{$ServiceID} eq $ServiceName ) {
$Hash{ServiceID} = $ServiceID;
}
}
push @ListedServices, \%Hash;
$UsedService{$ServiceName} = 1;
}
}
}
# build Service string
for my $ServiceRef (@ListedServices) {
my $ServiceStrg = '';
my %Service = %$ServiceRef;
# replace name of CustomService
if ( $Service{Service} eq 'CustomService' ) {
$Counter{$CustomService} = $Counter{ $Service{Service} };
$Service{Service} = $CustomService;
}
my @ServiceName = split /::/, $Service{Service};
my $ShortServiceName = $ServiceName[-1];
$Service{ServiceID} = 0 if ( !$Service{ServiceID} );
# get view param
my $View = $Kernel::OM->Get('Kernel::System::Web::Request')->GetParam( Param => 'View' ) || '';
$ServiceStrg
.= "<li><a href=\"$LayoutObject->{Baselink}Action=AgentTicketService;ServiceID=$Service{ServiceID}";
$ServiceStrg .= ';View=' . $LayoutObject->Ascii2Html( Text => $View ) . '"';
$ServiceStrg .= ' class="';
# should i highlight this Service
if ( $Param{SelectedService} =~ /^\Q$ServiceName[0]\E/ && $Level - 1 >= $#ServiceName ) {
if (
$#ServiceName == 0
&& $#MetaService >= 0
&& $Service{Service} =~ /^\Q$MetaService[0]\E$/
)
{
$ServiceStrg .= ' Active';
}
if (
$#ServiceName == 1
&& $#MetaService >= 1
&& $Service{Service} =~ /^\Q$MetaService[0]::$MetaService[1]\E$/
)
{
$ServiceStrg .= ' Active';
}
if (
$#ServiceName == 2
&& $#MetaService >= 2
&& $Service{Service} =~ /^\Q$MetaService[0]::$MetaService[1]::$MetaService[2]\E$/
)
{
$ServiceStrg .= ' Active';
}
if (
$#ServiceName == 3
&& $#MetaService >= 3
&& $Service{Service}
=~ /^\Q$MetaService[0]::$MetaService[1]::$MetaService[2]::$MetaService[3]\E$/
)
{
$ServiceStrg .= ' Active';
}
}
$ServiceStrg .= '">';
# remember to selected Service info
if ( $ServiceID eq $Service{ServiceID} ) {
$Param{SelectedService} = $Service{Service};
$Param{AllSubTickets} = $Counter{ $Service{Service} };
}
# ServiceStrg
$ServiceStrg .= $LayoutObject->Ascii2Html( Text => $ShortServiceName )
. " ($Counter{$Service{Service}})";
$ServiceStrg .= '</a></li>';
if ( $#ServiceName == 0 ) {
$Param{ServiceStrg1} .= $ServiceStrg;
}
elsif ( $#ServiceName == 1 && $Level >= 2 && $Service{Service} =~ /^\Q$MetaService[0]::\E/ )
{
$Param{ServiceStrg2} .= $ServiceStrg;
}
elsif (
$#ServiceName == 2
&& $Level >= 3
&& $Service{Service} =~ /^\Q$MetaService[0]::$MetaService[1]::\E/
)
{
$Param{ServiceStrg3} .= $ServiceStrg;
}
elsif (
$#ServiceName == 3
&& $Level >= 4
&& $Service{Service} =~ /^\Q$MetaService[0]::$MetaService[1]::$MetaService[2]::\E/
)
{
$Param{ServiceStrg4} .= $ServiceStrg;
}
elsif (
$#ServiceName == 4
&& $Level >= 5
&& $Service{Service}
=~ /^\Q$MetaService[0]::$MetaService[1]::$MetaService[2]::$MetaService[3]::\E/
)
{
$Param{ServiceStrg5} .= $ServiceStrg;
}
}
LEVEL:
for my $Level ( 1 .. 5 ) {
next LEVEL if !$Param{ 'ServiceStrg' . $Level };
$Param{ServiceStrg}
.= '<ul class="ServiceOverviewList Level_' . $Level . '">' . $Param{ 'ServiceStrg' . $Level } . '</ul>';
}
return (
MainName => 'Services',
SelectedService => $Param{SelectedService},
MainContent => $Param{ServiceStrg},
Total => $Param{TicketsShown},
);
}
1;
|