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.
Menu Ticket Information not update
Moderator: crythias
-
- Znuny newbie
- Posts: 7
- Joined: 25 Feb 2013, 20:31
- Znuny Version: 3.2.1
Re: Menu Ticket Information not update
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
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
-
- Znuny newbie
- Posts: 7
- Joined: 25 Feb 2013, 20:31
- Znuny Version: 3.2.1
Re: Menu Ticket Information not update
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 wrote:thats because of caching. Please don't work directly on the database!
Re: Menu Ticket Information not update
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
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
-
- Znuny newbie
- Posts: 7
- Joined: 25 Feb 2013, 20:31
- Znuny Version: 3.2.1
Re: Menu Ticket Information not update
Thanks.jojo wrote:Again, don't update the database directly. Use API calls for this!