Move into permissions - SOLVED
Moderator: crythias
Move into permissions - SOLVED
Hi,
OTRS 3.3.5
have a user with permissions:
Permissions on Queue A - rw
Permissions on Queue B - ro, move
This user move tickets to from Queue A to Queue B but i want him also to be able to move tickets from Queue B back to A without giving him write permissions on Queue B.
how is this can be done? With the above mentioned permission it is not working.
OTRS 3.3.5
have a user with permissions:
Permissions on Queue A - rw
Permissions on Queue B - ro, move
This user move tickets to from Queue A to Queue B but i want him also to be able to move tickets from Queue B back to A without giving him write permissions on Queue B.
how is this can be done? With the above mentioned permission it is not working.
Last edited by maayanay on 12 Mar 2014, 14:12, edited 1 time in total.
OTRS Ver: 3.3.5
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Move into permissions
reduce permissions on move.
Also, define not working.
Also, define not working.
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
Re: Move into permissions
what do you mean reduce permissions on move?crythias wrote:reduce permissions on move.
Also, define not working.
not working means - when the user trying to move tickets from Queue B to Queue A he have no permissions ("MOVE" button is not shown)
OTRS Ver: 3.3.5
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Move into permissions
Bugfix:
Kernel/Modules/AgentTicketZoom.pm:
Change:
Kernel/Modules/AgentTicketZoom.pm:
Change:
Code: Select all
my $Access = $Self->{TicketObject}->TicketPermission(
Type => 'move_into', #original says 'move'
TicketID => $Ticket{TicketID},
UserID => $Self->{UserID},
LogNo => 1,
);
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
Re: Move into permissions
crythias wrote:Bugfix:
Kernel/Modules/AgentTicketZoom.pm:
Change:Code: Select all
my $Access = $Self->{TicketObject}->TicketPermission( Type => 'move_into', #original says 'move' TicketID => $Ticket{TicketID}, UserID => $Self->{UserID}, LogNo => 1, );
so now i see the move option but when i move to a queue is saying "you need move permissions" which i have. i have full RW including move into permissions for the queue I'm trying to move to.
OTRS Ver: 3.3.5
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Move into permissions
Likewise AgentTicketMove.pm here
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
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Move into permissions
Edit the first post and change the title.
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
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Move into permissions - SOLVED
I need to make a correction.
"move" is indeed a separate permission that needs to be enabled in sysconfig in order to apply...
Edit Config Settings in Ticket -> Core::Ticket
System::Permission
Standard available permissions for agents within the application. If more permissions are needed, they can be entered here. Permissions must be defined to be effective. Some other good permissions have also been provided built-in: note, close, pending, customer, freetext, move, compose, responsible, forward, and bounce. Make sure that "rw" is always the last registered permission.
(Summary: add "move" as a permission in this list and apply accordingly.)
"move" is indeed a separate permission that needs to be enabled in sysconfig in order to apply...
Edit Config Settings in Ticket -> Core::Ticket
System::Permission
Standard available permissions for agents within the application. If more permissions are needed, they can be entered here. Permissions must be defined to be effective. Some other good permissions have also been provided built-in: note, close, pending, customer, freetext, move, compose, responsible, forward, and bounce. Make sure that "rw" is always the last registered permission.
(Summary: add "move" as a permission in this list and apply accordingly.)
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