Changing values Displayed in To Queue on the AgentTicketPhone?

Moderator: crythias

Locked
smuwanga
Znuny newbie
Posts: 27
Joined: 31 Dec 2014, 10:57
Znuny Version: 5.0.22
Real Name: Simon Peter Muwanga
Company: UgandaSoft
Contact:

Changing values Displayed in To Queue on the AgentTicketPhone?

Post by smuwanga »

Hi,

I have created an ACL to change the values displayed in To queue field when creating new phone ticket. I expected the value inTo queue to change to BridalHairTeam, but it does not.
What could I be missing? Code is here below.

Code: Select all

$Self->{TicketAcl}->{'ACL-GeneralHairTeam-to-BridalHairTeam'} = {
    # match properties
    Properties => {
	Frontend => {
            Action => ['AgentTicketPhone'],
        },
       User => {
            
            Role => [
                'GeneralHairTeam',
            ],
           
        },
    },

    
    # return possible options
    Possible => {
        # possible ticket options
        Ticket => {
            Dest => ['BridalHairTeam'],
        },
    },
}
#------------end ACLs here-------------------------#
Roles:
GeneralHairTeam
BridalHairTeam

Queues:
GeneralHairTeam
BridalHairTeam

Thanks.
Last edited by smuwanga on 07 May 2015, 16:52, edited 1 time in total.
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Changing values Displayed in To Queue on the AgentTicketPhone?

Post by crythias »

It won't change values. It will only restrict the values available to choose. Also, not Dest, it's really Queue.
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
Locked