Dynamic Fields ACL not work

Moderator: crythias

Locked
lukas77
Znuny newbie
Posts: 7
Joined: 16 Dec 2010, 11:11
Znuny Version: 3.0.2

Dynamic Fields ACL not work

Post by lukas77 »

Hi,
I created dropdown DynamicField with 4 options to choose, this field is visible in customer frontend, now I wanted to the "one queue" restrict options to only 2 in Config.pm. OTRS 3.1.2 It looks like this:
Queue name: "MyQueue"
DynamicField name: "MyDynamicFiled"
Dropdown options: "Option1", "Option2"... "Option4"

Code: Select all

	
# Lokalizacje dla karty
	$Self->{TicketAcl}->{'ACL101'}={
		Properties => {
				Queue => {
					Name => ['MyQueue'],
				},
			},
		Possible => {
				Ticket => {
					DynamicField_MyDynamicField => ['Option3','Option4'],
			},
		},
	};
It doesn't work, all 4 "Options" are visible in DynamicField Dropdown toggle.
OTRS 3.1.12
Locked