OK, so I have a bunch of Queues, Sub-queues and services... When a customer is creating a ticket, I want the Sub-queue it lands in to be determined by the service selected at the Service drop-down.
Now, I already have the services displayed determine by the queue using the following entries in the Config.pm file:
Code: Select all
$Self->{TicketAcl}->{'ACL-Queue-FIN'} = {
Properties => {
Frontend => {Action => ['CustomerTicketMessage']},
Queue => {Name => ['Finance']}
},
Possible => {
Ticket => {
Service => ['[RegExp]^Finance$',
'[RegExp]^Finance::*']
}
},
};
$Self->{TicketAcl}->{'ACL-Queue-A_IT'} = {
Properties => {
Frontend => {Action =>['CustomerTicketMessage']},
Queue => {Name =>['IT']},
},
Possible => {
Ticket => {
Service => ['[RegExp]^IT*']
}
}
};
$Self->{TicketAcl}->{'ACL-Queue-IT_Infra'} = {
Properties => {
Frontend => {Action =>['CustomerTicketMessage']},
Queue => {Name =>['IT::Infrastructure']},
},
Possible => {
Ticket => {
Service => ['[Regex]^IT::Infrastructure::*']
}
}
}
);
Any help/pointers would be appreciated!