Hallo Zusammen,
ist es möglich für die Anwender die Prioritätstufen (z.B. 4 und 5) im Kundenfrontend auszublenden? In der Sysconfig konnte ich die Prioritäten leider nur komplett aus- oder einblenden. Weiß hier vielleicht jemand etwas?
[SOLVED] Priorität im Kundenfrontend ausblenden
[SOLVED] Priorität im Kundenfrontend ausblenden
Last edited by gustav on 12 Aug 2014, 09:45, edited 2 times in total.
Testsystem: OTRS 3.3.8 | ITSM 3.3.8 | KIXCore | KIX4OTRS | CentOS 6.5
Re: Priorität im Kundenfrontend ausblenden
eine ACL ist hier Dein Freund
"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
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
Re: Priorität im Kundenfrontend ausblenden
Hallo jojo,
danke für die schnelle Antwort. ACLs sind mir noch etwas Fremd - ich werde dies gleich testen!
---
Nachtrag: 07.08.14
Funktioniert!!! Falls jemand nach einer ähnlichen Lösung sucht 
danke für die schnelle Antwort. ACLs sind mir noch etwas Fremd - ich werde dies gleich testen!
---
Nachtrag: 07.08.14
Code: Select all
$Self->{TicketAcl}->{'Customer-Prio-Ausblenden'} = {
# match properties
Properties => {
Frontend => {
Action => ['CustomerTicketMessage'],
}
},
# remove options (black list)
PossibleNot => {
Ticket => {
Priority => ['4 High', '5 Very high'],
}
},
};

Testsystem: OTRS 3.3.8 | ITSM 3.3.8 | KIXCore | KIX4OTRS | CentOS 6.5