Can't change the selected queues for an Agent's my queues

Moderator: crythias

Locked
hawkinspeter
Znuny newbie
Posts: 3
Joined: 09 Apr 2012, 12:04
Znuny Version: 3.1.3
Real Name: Peter Hawkins
Company: Castelan Ltd

Can't change the selected queues for an Agent's my queues

Post by hawkinspeter »

I've upgraded to 3.1.3 (with ITSM) with an oracle backend and it's been working fine so far. However, when we tried to amend an Agent's selection of queues in their My Queues, it seems to work, except it doesn't save the changes.

I'm quite happy to manually alter the sql if necessary to update the couple of agents that need to be updated, but I couldn't fine where the "My Queues" are stored. Anyone know?
yuri0001
Znuny superhero
Posts: 630
Joined: 17 Mar 2011, 14:40
Znuny Version: 5.0.6
Real Name: Yuri Kolesnikov
Location: Russia

Re: Can't change the selected queues for an Agent's my queue

Post by yuri0001 »

Hi!
Try to see "personal_queues" table :?
Best regards Yuri Kolesnikov
OTRS 5.0.14, ITSM 5.0.14
SUSE 13.2, MariaDB 10.0.22(productive)
OTRS 5.0.14, ITSM 5.0.14(test)
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: Can't change the selected queues for an Agent's my queue

Post by jojo »

Thats a known (and it in upcomming version fixed) bug: - 2012-04-05 Fixed bug#8368 - Personal Queues update is not reflected in UI.
"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
hawkinspeter
Znuny newbie
Posts: 3
Joined: 09 Apr 2012, 12:04
Znuny Version: 3.1.3
Real Name: Peter Hawkins
Company: Castelan Ltd

Re: Can't change the selected queues for an Agent's my queue

Post by hawkinspeter »

Thanks - I've had a look and run a quick bit of sql:

insert into personal_queues (USER_ID, QUEUE_ID)
(select 21, ID from queue
where NAME not like 'Development%'
minus
select USER_ID, QUEUE_ID from personal_queues);

Unfortunately, it's not updating the list in "My Queues" when I edit the preferences for my agent.

I've now done a test and it looks like emails get sent correctly according to the values in personal_queues, but the multi-select box in agent preferences does not update correctly. It must be being cached somewhere.
hawkinspeter
Znuny newbie
Posts: 3
Joined: 09 Apr 2012, 12:04
Znuny Version: 3.1.3
Real Name: Peter Hawkins
Company: Castelan Ltd

Re: Can't change the selected queues for an Agent's my queue

Post by hawkinspeter »

Just seen the post about the fixed bug on this. Maybe I should have checked the bug tracker first, but I've had trouble searching as the terms "Agent" and "My Queues" are very common.
Locked