In the navigation bar on the top right, there are 2 icons named "New message" and "Locked Tickets".
Since, in our organisation, we don't lock tickets ever, I would like these icons to have a different behaviour:
1. "New message" should display all tickets in state new, whatever the lock/unlock, whatever the owner.
2. "Locked Tickets" should be transformed in "My Tickets" and display all tickets I am the owner.
I managed to obtain the second result by adding "unlock" in AgentTicketLockedView.pm, in myFilters, All:
Code: Select all
my %Filters = (
All => {
Name => 'All',
Prio => 1000,
Search => {
Result => 'ARRAY',
Limit => 1000,
Locks => ['lock', 'unlock'],
I did not manage to obtain the first result, whatever I modify in AgentTicketLockedView.pm, in myFilters, New.
Can anybody help please?
Regards,
HervE