init III
This commit is contained in:
@@ -0,0 +1,87 @@
|
||||
# --
|
||||
# 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::System::CustomerUser::Event::ServiceMemberUpdate;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
our @ObjectDependencies = (
|
||||
'Kernel::System::Log',
|
||||
'Kernel::System::Service',
|
||||
);
|
||||
|
||||
sub new {
|
||||
my ( $Type, %Param ) = @_;
|
||||
|
||||
# allocate new hash for object
|
||||
my $Self = {};
|
||||
bless( $Self, $Type );
|
||||
|
||||
return $Self;
|
||||
}
|
||||
|
||||
sub Run {
|
||||
my ( $Self, %Param ) = @_;
|
||||
|
||||
# check needed stuff
|
||||
for (qw( Data Event Config UserID )) {
|
||||
if ( !$Param{$_} ) {
|
||||
$Kernel::OM->Get('Kernel::System::Log')->Log(
|
||||
Priority => 'error',
|
||||
Message => "Need $_!"
|
||||
);
|
||||
return;
|
||||
}
|
||||
}
|
||||
for (qw( UserLogin NewData OldData )) {
|
||||
if ( !$Param{Data}->{$_} ) {
|
||||
$Kernel::OM->Get('Kernel::System::Log')->Log(
|
||||
Priority => 'error',
|
||||
Message => "Need $_ in Data!"
|
||||
);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
# only update CustomerUser <> Service if fields have really changed
|
||||
if ( $Param{Data}->{OldData}->{UserLogin} ne $Param{Data}->{NewData}->{UserLogin} ) {
|
||||
|
||||
# get service object
|
||||
my $ServiceObject = $Kernel::OM->Get('Kernel::System::Service');
|
||||
|
||||
my @Services = $ServiceObject->CustomerUserServiceMemberList(
|
||||
CustomerUserLogin => $Param{Data}->{OldData}->{UserLogin},
|
||||
Result => 'ARRAY',
|
||||
DefaultServices => 0,
|
||||
);
|
||||
|
||||
for my $ServiceID (@Services) {
|
||||
|
||||
# first remove old customer id as service member
|
||||
$ServiceObject->CustomerUserServiceMemberAdd(
|
||||
CustomerUserLogin => $Param{Data}->{OldData}->{UserLogin},
|
||||
ServiceID => $ServiceID,
|
||||
Active => 0,
|
||||
UserID => 1,
|
||||
);
|
||||
|
||||
# add new customer id as service member
|
||||
$ServiceObject->CustomerUserServiceMemberAdd(
|
||||
CustomerUserLogin => $Param{Data}->{NewData}->{UserLogin},
|
||||
ServiceID => $ServiceID,
|
||||
Active => 1,
|
||||
UserID => 1,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
1;
|
||||
Reference in New Issue
Block a user