Hello everyone ,
Is there possible to left current state of ticket when customer replies to a ticket ?
For example: Customer creates new ticket. The ticket state is ''new". And then he want to add additional information , so replies to ticket from customer panel or email. In this case ticket state automatically sets to "Open" and in agent interface it disapears from "NEW tickets" tab. Is there possible to make default next ticket state to not change ?
Ticket state after customer reply(follow up)
Moderator: crythias
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Ticket state after customer reply(follow up)
Ticket state should not change until agent replies.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
-
- Znuny newbie
- Posts: 35
- Joined: 27 Apr 2012, 13:56
- Znuny Version: 3.2.9 /3.3 / 4.0.5
- Real Name: Giampiero
- Company: Atos
- Location: Roma - IT
Re: Ticket state after customer reply(follow up)
Interesting question. I'm also walking throught this configuration.
I don't want change the ticket state if a customer reply to the ticket because there is a GenericAgent Job that evaluete the combinition of some DynamicFiled and set the new state only if necessary.
In the SysConfig Ticket::Frontend::CustomerTicketZoom###State i've set it to NO, so the customer can't select the next state, but when he save the note the state is automatically set to the default state.
Any suggestion?
I don't want change the ticket state if a customer reply to the ticket because there is a GenericAgent Job that evaluete the combinition of some DynamicFiled and set the new state only if necessary.
In the SysConfig Ticket::Frontend::CustomerTicketZoom###State i've set it to NO, so the customer can't select the next state, but when he save the note the state is automatically set to the default state.
Any suggestion?
OTRS in several version starting from 3.0
Production Environment
OTRS 4.0.5 - Postgres9.3
ITSM, KIX4OTRS, FAQ,SURVEY
OS RedHat 6.4
Auth: Ldap - CAS - DB
Production Environment
OTRS 4.0.5 - Postgres9.3
ITSM, KIX4OTRS, FAQ,SURVEY
OS RedHat 6.4
Auth: Ldap - CAS - DB
-
- Znuny newbie
- Posts: 51
- Joined: 10 Aug 2015, 20:02
- Znuny Version: 5.0.0
Re: Ticket state after customer reply(follow up)
Same problem here.
How can i disable this item "Ticket::Frontend::CustomerTicketZoom###StateDefault"???
Our users can reply the ticket at any time and i only want the state to change when the ticket is closed, so the client can reopen it (using a GenericAgent).
The problem is that while the Agent is trying to solve te problem and the ticket receive a reply from the customer the state change from "open" to "reopen"
Edit: We have several diferent states, so I can't fix a state in "StateDefault" option
How can i disable this item "Ticket::Frontend::CustomerTicketZoom###StateDefault"???
Our users can reply the ticket at any time and i only want the state to change when the ticket is closed, so the client can reopen it (using a GenericAgent).
The problem is that while the Agent is trying to solve te problem and the ticket receive a reply from the customer the state change from "open" to "reopen"
Edit: We have several diferent states, so I can't fix a state in "StateDefault" option
-
- Znuny newbie
- Posts: 51
- Joined: 10 Aug 2015, 20:02
- Znuny Version: 5.0.0
Re: Ticket state after customer reply(follow up)
OK. I got half answer here: viewtopic.php?f=62&t=6066
I also modified the file "/Kernel/Modules/AgentTicketZoom.pm" so it worked like i wanted in the user interface. Following code about line 592:
# set state
my $NextState = $Ticket{State};
if($Ticket{StateType} =~ /^close/){
$NextState = 'Reaberto';
}
so the ticket only reopen if it has some of the statetype "close"
Everything is working now and my life make sense again.Thanks crythias, you are doing a great job in this forum.
I also modified the file "/Kernel/Modules/AgentTicketZoom.pm" so it worked like i wanted in the user interface. Following code about line 592:
# set state
my $NextState = $Ticket{State};
if($Ticket{StateType} =~ /^close/){
$NextState = 'Reaberto';
}
so the ticket only reopen if it has some of the statetype "close"
Everything is working now and my life make sense again.Thanks crythias, you are doing a great job in this forum.
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Ticket state after customer reply(follow up)
Don't change backend code for user interface. Use ACL.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask