PLS. Help, I change the state "Merge" to another, for example "NewMerge", but after this, when I merge some tickets they have "Open" state.
Where is in config I can set TicketStateAfterMerge? I find only Frontend::Agent::Ticket::ViewMerge but it is not what I want ((((
How and Where I can set TicketState After Merge
Moderator: crythias
-
- Znuny guru
- Posts: 5018
- Joined: 13 Mar 2011, 09:54
- Znuny Version: 6.0.x
- Real Name: Renée Bäcker
- Company: Perl-Services.de
- Contact:
Re: How and Where I can set TicketState After Merge
This is hardcoded in Kernel/System/Ticket.pm:
Code: Select all
# set new state of merge ticket
$Self->StateSet(
State => 'merged',
TicketID => $Param{MergeTicketID},
UserID => $Param{UserID},
);
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Re: How and Where I can set TicketState After Merge
there is no possibility to influence the target ticket state
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
Re: How and Where I can set TicketState After Merge
Thanks problem resolved!reneeb wrote:This is hardcoded in Kernel/System/Ticket.pm:Code: Select all
# set new state of merge ticket $Self->StateSet( State => 'merged', TicketID => $Param{MergeTicketID}, UserID => $Param{UserID}, );