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 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
|
# --
# 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::System::ProcessManagement::Process;
use strict;
use warnings;
use Kernel::System::VariableCheck qw(:all);
our @ObjectDependencies = (
'Kernel::Config',
'Kernel::System::DynamicField',
'Kernel::System::DynamicField::Backend',
'Kernel::System::Log',
'Kernel::System::ProcessManagement::Activity',
'Kernel::System::ProcessManagement::ActivityDialog',
'Kernel::System::ProcessManagement::Transition',
'Kernel::System::ProcessManagement::TransitionAction',
'Kernel::System::Ticket',
);
=head1 NAME
Kernel::System::ProcessManagement::Process - process lib
=head1 DESCRIPTION
All ProcessManagement Process functions.
=head1 PUBLIC INTERFACE
=head2 new()
Don't use the constructor directly, use the ObjectManager instead:
my $ProcessObject = $Kernel::OM->Get('Kernel::System::ProcessManagement::Process');
=cut
sub new {
my ( $Type, %Param ) = @_;
# allocate new hash for object
my $Self = {};
bless( $Self, $Type );
# 0=off; 1=on;
$Self->{Debug} = $Param{Debug} || 0;
return $Self;
}
=head2 ProcessGet()
Get process info
my $Process = $ProcessObject->ProcessGet(
ProcessEntityID => 'P1',
);
Returns:
$Process = {
'Name' => 'Process1',
'CreateBy' => '1',
'CreateTime' => '16-02-2012 13:37:00',
'ChangeBy' => '1',
'ChangeTime' => '17-02-2012 13:37:00',
'State' => 'Active',
'StartActivityDialog' => 'AD1',
'StartActivity' => 'A1',
'Path' => {
'A2' => {
'T3' => {
ActivityEntityID => 'A4',
},
},
'A1' => {
'T1' => {
ActivityEntityID => 'A2',
},
'T2' => {
ActivityEntityID => 'A3',
},
},
},
};
=cut
sub ProcessGet {
my ( $Self, %Param ) = @_;
for my $Needed (qw(ProcessEntityID)) {
if ( !defined $Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return;
}
}
my $Process = $Kernel::OM->Get('Kernel::Config')->Get('Process');
if ( !IsHashRefWithData($Process) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => 'Need Process config!',
);
return;
}
if ( !IsHashRefWithData( $Process->{ $Param{ProcessEntityID} } ) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "No Data for Process '$Param{ProcessEntityID}' found!",
);
return;
}
return $Process->{ $Param{ProcessEntityID} };
}
=head2 ProcessList()
Get a list of all Processes
my $ProcessList = $ProcessObject->ProcessList(
ProcessState => ['Active'], # Active, FadeAway, Inactive
Interface => ['AgentInterface'], # optional, ['AgentInterface'] or ['CustomerInterface'] or ['AgentInterface', 'CustomerInterface'] or 'all'
Silent => 1 # optional, 1 || 0, default 0, if set to 1 does not log errors if there are no processes configured
);
Returns:
$ProcessList = {
'P1' => 'Process 1',
'P2' => 'Process 2',
'P3' => '',
};
=cut
sub ProcessList {
my ( $Self, %Param ) = @_;
for my $Needed (qw(ProcessState)) {
if ( !defined $Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return;
}
}
if ( !IsArrayRefWithData( $Param{ProcessState} ) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => 'Need at least one ProcessState!',
);
return;
}
my $Processes = $Kernel::OM->Get('Kernel::Config')->Get('Process');
if ( !IsHashRefWithData($Processes) ) {
if ( !$Param{Silent} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => 'Need Process config!',
);
}
return;
}
# get only processes with the requested ProcessState(s)
my %ProcessList;
for my $ProcessEntityID ( sort keys %{$Processes} ) {
if ( grep { $_ eq $Processes->{$ProcessEntityID}->{State} } @{ $Param{ProcessState} } ) {
$ProcessList{$ProcessEntityID} = $Processes->{$ProcessEntityID}->{Name} || '';
}
}
# set Interface parameter to 'all' by default if parameter was not set
if ( !defined $Param{Interface} ) {
$Param{Interface} = 'all';
}
# if Interface is 'all' return all processes without interface restrictions
if ( $Param{Interface} eq 'all' ) {
return \%ProcessList;
}
# get activity dialog object
my $ActivityDialogObject = $Kernel::OM->Get('Kernel::System::ProcessManagement::ActivityDialog');
# otherwise return only processes where the initial activity dialog matches given interface
my %ReducedProcessList;
PROCESS:
for my $ProcessEntityID ( sort keys %ProcessList ) {
# get process start point for each process we already got
my $Start = $Self->ProcessStartpointGet( ProcessEntityID => $ProcessEntityID );
# skip processes if they does not have a valid start point
next PROCESS if !IsHashRefWithData($Start);
next PROCESS if !IsStringWithData( $Start->{ActivityDialog} );
# try to get the start ActivityDialog for the given interface
my $ActivityDialog = $ActivityDialogObject->ActivityDialogGet(
ActivityDialogEntityID => $Start->{ActivityDialog},
Interface => $Param{Interface},
Silent => 1,
);
# skip process if first activity dialog could not be got for the given interface
next PROCESS if !IsHashRefWithData($ActivityDialog);
$ReducedProcessList{$ProcessEntityID} = $ProcessList{$ProcessEntityID};
}
return \%ReducedProcessList;
}
=head2 ProcessStartpointGet()
Get process startpoint
my $Start = $ProcessObject->ProcessStartpointGet(
ProcessEntityID => 'P1',
);
Returns:
$Start = {
Activity => 'A1',
ActivityDialog => 'AD1',
};
=cut
sub ProcessStartpointGet {
my ( $Self, %Param ) = @_;
for my $Needed (qw(ProcessEntityID)) {
if ( !defined $Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return;
}
}
my $Process = $Self->ProcessGet( ProcessEntityID => $Param{ProcessEntityID} );
# include FadeAway processes so they will be listed as available processes to continue working
# with them
if ( $Process->{State} ne 'Active' && $Process->{State} ne 'FadeAway' ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Can't get 'StartActivity' for Process '$Param{ProcessEntityID}', State"
. " is '$Process->{State}'!",
);
return;
}
if ( !$Process->{StartActivity} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "No 'StartActivity' for Process '$Param{ProcessEntityID}' found!",
);
return;
}
if ( !$Process->{StartActivity} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "No 'StartActivity' for Process '$Param{ProcessEntityID}' found!",
);
return;
}
if ( !$Process->{StartActivityDialog} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "No 'StartActivityDialog' for Process '$Param{ProcessEntityID}' found!",
);
return;
}
return {
Activity => $Process->{StartActivity},
ActivityDialog => $Process->{StartActivityDialog}
};
}
=head2 ProcessTransition()
Check valid Transitions and Change Ticket's Activity
if a Transition was positively checked
my $ProcessTransition = $ProcessObject->ProcessTransition(
ProcessEntityID => 'P1',
ActivityEntityID => 'A1',
TicketID => 123,
UserID => 123,
CheckOnly => 1, # optional
Data => { # optional
Queue => 'Raw',
DynamicField1 => 'Value',
Subject => 'Testsubject',
#...
},
);
Returns:
$Success = 1; # undef # if "CheckOnly" is NOT set
1 if Transition was executed and Ticket->ActivityEntityID updated
undef if no Transition matched or check failed otherwise
$ProcessTransition = { # if option "CheckOnly" is set
'T1' => {
ActivityEntityID => 'A1',
TransitionAction => [
'TA1',
'TA2',
'TA3',
],
},
};
=cut
sub ProcessTransition {
my ( $Self, %Param ) = @_;
for my $Needed (qw(ProcessEntityID ActivityEntityID TicketID UserID)) {
if ( !defined $Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return;
}
}
my %Data;
# Get Ticket object
my $TicketObject = $Kernel::OM->Get('Kernel::System::Ticket');
# Get Ticket Data
%Data = $TicketObject->TicketGet(
TicketID => $Param{TicketID},
DynamicFields => 1,
UserID => $Param{UserID},
);
# Check if we got a Ticket
if ( !IsHashRefWithData( \%Data ) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Invalid TicketID: $Param{TicketID}!",
);
return;
}
# If we have Data lay it over the current %Data
# to check Ticket + Additional Data
if ( $Param{Data} ) {
%Data = ( %Data, %{ $Param{Data} } );
}
my $Process = $Self->ProcessGet( ProcessEntityID => $Param{ProcessEntityID} );
if ( !$Process->{State} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Can't process Transition for Process '$Param{ProcessEntityID}', can't"
. " get State out of the config!",
);
return;
}
if ( $Process->{State} eq 'Inactive' ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Can't process Transition for Process '$Param{ProcessEntityID}',"
. " ProcessState is '$Process->{State}'!",
);
return;
}
# We need the Processes Config
# and the Config for the process the Ticket is in
# and the Process has to have the 'Path' Hash set
if (
!IsHashRefWithData($Process)
|| !IsHashRefWithData( $Process->{Path} )
)
{
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need Path for ProcessEntityID $Param{ProcessEntityID}!",
);
return;
}
# Check if our ActivitySet has a path configured
# if it hasn't we got nothing to do -> print debuglog if desired and return
if ( !IsHashRefWithData( $Process->{Path}->{ $Param{ActivityEntityID} } ) ) {
if ( $Self->{Debug} > 0 ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'debug',
Message => 'No Path configured for Process with ID: '
. "$Param{ProcessEntityID} and ActivityEntityID: $Param{ActivityEntityID}!",
);
}
return;
}
# %Transitions Hash for easier reading
# contains all possible Transitions for the current Activity
my %Transitions = %{ $Process->{Path}->{ $Param{ActivityEntityID} } };
# get transition object
my $TransitionObject = $Kernel::OM->Get('Kernel::System::ProcessManagement::Transition');
# Handle all possible TransitionEntityID's for the Process->Path's->ActivityEntityID down to
# Transition.pm's TransitionCheck for validation
# will return undef if nothing matched or the first matching TransitionEntityID
my $TransitionEntityID = $TransitionObject->TransitionCheck(
TransitionEntityID => [ sort { $a cmp $b } keys %Transitions ],
Data => \%Data,
);
# if we didn't get a TransitionEntityID
# no check was successful -> return nothing
if ( !$TransitionEntityID || !length $TransitionEntityID ) {
if ( $Self->{Debug} > 0 ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'debug',
Message => 'No Transition matched for TicketID: '
. "$Param{TicketID} ProcessEntityID: $Param{ProcessEntityID} "
. "ActivityEntityID: $Param{ActivityEntityID}!",
);
}
return;
}
# get activity object
my $ActivityObject = $Kernel::OM->Get('Kernel::System::ProcessManagement::Activity');
# If we have a Transition without valid FutureActivitySet we have to complain
if (
!IsHashRefWithData( $Transitions{$TransitionEntityID} )
|| !$Transitions{$TransitionEntityID}->{ActivityEntityID}
|| !IsHashRefWithData(
$ActivityObject->ActivityGet(
Interface => 'all',
ActivityEntityID => $Transitions{$TransitionEntityID}->{ActivityEntityID}
)
)
)
{
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need Target Activity for Process with "
. "ProcessEntityID: $Param{ProcessEntityID} ActivityEntityID:"
. " $Param{ActivityEntityID} TransitionEntityID: $TransitionEntityID!",
);
return;
}
# If we should just check what Transition matched
# return a hash containing
# { TransitionEntityID => FutureActivityEntityID }
if ( $Param{CheckOnly} ) {
if ( $Self->{Debug} > 0 ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'debug',
Message => "Transition with ID $TransitionEntityID matched for "
. "TicketID: $Param{TicketID} ProcessEntityID: $Param{ProcessEntityID} "
. "ActivityEntityID: $Param{ActivityEntityID}!",
);
}
return { $TransitionEntityID => $Transitions{$TransitionEntityID} };
}
# Set the new ActivityEntityID on the Ticket
my $Success = $Self->ProcessTicketActivitySet(
ProcessEntityID => $Param{ProcessEntityID},
ActivityEntityID => $Transitions{$TransitionEntityID}->{ActivityEntityID},
TicketID => $Param{TicketID},
UserID => $Param{UserID},
);
if ( !$Success ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Failed setting ActivityEntityID of Ticket: $Param{TicketID} to "
. $Transitions{$TransitionEntityID}->{ActivityEntityID}
. " after successful Transition: $TransitionEntityID!",
);
return;
}
# if we don't have Transition Actions on that transition,
# return 1 for successful transition
if (
!$Transitions{$TransitionEntityID}->{TransitionAction}
|| (
ref $Transitions{$TransitionEntityID}->{TransitionAction} eq 'ARRAY'
&& !@{ $Transitions{$TransitionEntityID}->{TransitionAction} }
)
)
{
return 1;
}
# if we have Transition Action and it isn't an array return
if ( !IsArrayRefWithData( $Transitions{$TransitionEntityID}->{TransitionAction} ) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Defective Process configuration: 'TrasitionAction' must be an array in "
. "Process: $Param{ProcessEntityID} -> Path -> "
. "ActivityEntityID: $Param{ActivityEntityID} -> Transition: $TransitionEntityID!",
);
return;
}
# get transition action object
my $TransitionActionObject = $Kernel::OM->Get('Kernel::System::ProcessManagement::TransitionAction');
my $TransitionActions = $TransitionActionObject->TransitionActionList(
TransitionActionEntityID => $Transitions{$TransitionEntityID}->{TransitionAction},
);
if ( !IsArrayRefWithData($TransitionActions) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Getting TransitionActionList for Process: $Param{ProcessEntityID},"
. " Transition: $TransitionEntityID failed.",
);
return;
}
for my $TransitionAction ( @{$TransitionActions} ) {
# Refresh ticket data, as transition actions could already had modified the ticket
# e.g TicketServiceSet -> TicketSLASet, SLA needs to already have a Service,
# see bug#12147.
%Data = $TicketObject->TicketGet(
TicketID => $Param{TicketID},
DynamicFields => 1,
UserID => $Param{UserID},
);
my $TransitionActionModuleObject = $TransitionAction->{Module}->new();
# Transition actions could replace configuration tags with actual ticket values,
# copying the configuration prevents unwanted results if same Transition action is called
# for multiple tickets, see bug#12179
my %Config = %{ $TransitionAction->{Config} || {} };
my $Success = $TransitionActionModuleObject->Run(
UserID => $Param{UserID},
Ticket => \%Data,
ProcessEntityID => $Param{ProcessEntityID},
ActivityEntityID => $Param{ActivityEntityID},
TransitionEntityID => $TransitionEntityID,
TransitionActionEntityID => $TransitionAction->{TransitionActionEntityID},
Config => \%Config,
);
}
return 1;
}
=head2 ProcessTicketActivitySet()
Set Ticket's ActivityEntityID
my $Success = $ProcessObject->ProcessTicketActivitySet(
ProcessEntityID => 'P1',
ActivityEntityID => 'A1',
TicketID => 123,
UserID => 123,
);
Returns:
$Success = 1; # undef
1 if setting the Activity was executed
undef if setting failed
=cut
sub ProcessTicketActivitySet {
my ( $Self, %Param ) = @_;
for my $Needed (qw(ProcessEntityID ActivityEntityID TicketID UserID)) {
if ( !defined $Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return;
}
}
# get activity object
my $ActivityObject = $Kernel::OM->Get('Kernel::System::ProcessManagement::Activity');
# check on valid ActivityEntityID
my $Success = $ActivityObject->ActivityGet(
Interface => 'all',
ActivityEntityID => $Param{ActivityEntityID},
);
if ( !$Success ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Process->ProcessTicketActivitySet called on "
. "non existing ActivityEntityID: $Param{ActivityEntityID}!",
);
return;
}
# Check on valid State
my $Process = $Self->ProcessGet( ProcessEntityID => $Param{ProcessEntityID} );
if ( !$Process->{State} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Can't set ActivitySet for Process '$Param{ProcessEntityID}', cat get"
. " State out of the config!",
);
return;
}
if ( $Process->{State} eq 'Inactive' ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Can't set ActivitySet for Process '$Param{ProcessEntityID}', State is"
. " '$Process->{State}'!",
);
return;
}
# Get DynamicField Name that's used for storing the ActivityEntityID per ticket
my $DynamicFieldTicketActivityEntityID
= $Kernel::OM->Get('Kernel::Config')->Get('Process::DynamicFieldProcessManagementActivityID');
if ( !$DynamicFieldTicketActivityEntityID ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need DynamicFieldProcessManagementActivityID config "
. "for storing of ActivityEntityID on TicketID: $Param{TicketID}!",
);
return;
}
# get dynamic field objects
my $DynamicFieldObject = $Kernel::OM->Get('Kernel::System::DynamicField');
my $DynamicFieldBackendObject = $Kernel::OM->Get('Kernel::System::DynamicField::Backend');
# get the dynamic fields for this screen
my $DynamicFieldList = $DynamicFieldObject->DynamicFieldListGet(
Valid => 1,
ObjectType => 'Ticket',
);
# Grep the Field out of the config of all Ticket DynamicFields
my @DynamicFieldConfig = grep { $_->{Name} eq $DynamicFieldTicketActivityEntityID } @{$DynamicFieldList};
# if the DynamicField isn't there, return 0 and log
if ( !IsHashRefWithData( $DynamicFieldConfig[0] ) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "DynamicField: $DynamicFieldTicketActivityEntityID not configured!",
);
return;
}
# If Ticket Update to the new ActivityEntityID was successful return 1
if (
$DynamicFieldBackendObject->ValueSet(
DynamicFieldConfig => $DynamicFieldConfig[0],
ObjectID => $Param{TicketID},
Value => $Param{ActivityEntityID},
UserID => $Param{UserID}
)
)
{
return 1;
}
return;
}
=head2 ProcessTicketProcessSet()
Set Ticket's ProcessEntityID
my $Success = $ProcessObject->ProcessTicketProcessSet(
ProcessEntityID => 'P1',
TicketID => 123,
UserID => 123,
);
Returns:
$Success = 1; # undef
1 if setting the Activity was executed
undef if setting failed
=cut
sub ProcessTicketProcessSet {
my ( $Self, %Param ) = @_;
for my $Needed (qw(ProcessEntityID TicketID UserID)) {
if ( !defined $Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return;
}
}
# Check on valid ProcessEntityID
my $Process = $Self->ProcessGet( ProcessEntityID => $Param{ProcessEntityID} );
if ( !$Process->{State} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Can't set Process '$Param{ProcessEntityID}' for TicketID"
. " '$Param{TicketID}', cat get State out of the config!",
);
return;
}
if ( $Process->{State} ne 'Active' ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Can't set Process '$Param{ProcessEntityID}' for TicketID"
. " '$Param{TicketID}', State is '$Process->{State}'!",
);
return;
}
# Get DynamicField Name that's used for storing the ActivityEntityID per ticket
my $DynamicFieldTicketProcessID
= $Kernel::OM->Get('Kernel::Config')->Get('Process::DynamicFieldProcessManagementProcessID');
if ( !$DynamicFieldTicketProcessID ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need DynamicFieldProcessManagementProcessID config "
. "for storing of ProcesID on TicketID: $Param{TicketID}!",
);
return;
}
# get dynamic field objects
my $DynamicFieldObject = $Kernel::OM->Get('Kernel::System::DynamicField');
my $DynamicFieldBackendObject = $Kernel::OM->Get('Kernel::System::DynamicField::Backend');
# get the dynamic fields for this screen
my $DynamicFieldList = $DynamicFieldObject->DynamicFieldListGet(
Valid => 1,
ObjectType => 'Ticket',
);
# Grep the Field out of the config of all Ticket DynamicFields
my @DynamicFieldConfig = grep { $_->{Name} eq $DynamicFieldTicketProcessID } @{$DynamicFieldList};
# if the DynamicField isn't there, return 0 and log
if ( !IsHashRefWithData( $DynamicFieldConfig[0] ) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "DynamicField: $DynamicFieldTicketProcessID not configured!",
);
return;
}
# If Ticket Update to the new ActivityEntityID was successful return 1
if (
$DynamicFieldBackendObject->ValueSet(
DynamicFieldConfig => $DynamicFieldConfig[0],
ObjectID => $Param{TicketID},
Value => $Param{ProcessEntityID},
UserID => $Param{UserID},
)
)
{
return 1;
}
return;
}
1;
=head1 TERMS AND CONDITIONS
This software is part of the OTRS project (L<https://otrs.org/>).
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 L<https://www.gnu.org/licenses/gpl-3.0.txt>.
=cut
|