Menu Ticket Information not update

Moderator: crythias

Locked
maiconrocha
Znuny newbie
Posts: 7
Joined: 25 Feb 2013, 20:31
Znuny Version: 3.2.1

Menu Ticket Information not update

Post by maiconrocha »

when I update the ticket this way in database ORACLE:

UPDATE ticket
SET ticket_state_id = 4
WHERE id = <TICKET_ID>;

commit;

The ticket in database is ok, but the Menu Ticket Information in AgentTicketZoom not update.
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: Menu Ticket Information not update

Post by jojo »

thats because of caching. Please don't work directly on the database!
"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
maiconrocha
Znuny newbie
Posts: 7
Joined: 25 Feb 2013, 20:31
Znuny Version: 3.2.1

Re: Menu Ticket Information not update

Post by maiconrocha »

jojo wrote:thats because of caching. Please don't work directly on the database!
I do this update directly the database(trigger) to not allow the agent to have 2 tickets in WIP. Is there something in the application that does it?
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: Menu Ticket Information not update

Post by jojo »

Again, don't update the database directly. Use API calls for this!
"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
maiconrocha
Znuny newbie
Posts: 7
Joined: 25 Feb 2013, 20:31
Znuny Version: 3.2.1

Re: Menu Ticket Information not update

Post by maiconrocha »

jojo wrote:Again, don't update the database directly. Use API calls for this!
Thanks.
Locked