Change ownership of locked tickets

Moderator: crythias

Locked
girishmungra
Znuny newbie
Posts: 59
Joined: 24 Jul 2012, 18:20
Znuny Version: 3.1.7
Real Name: Girish Mungra

Change ownership of locked tickets

Post by girishmungra »

i want my agents with full rw permissions to be able to change owner on tickets locked by an agent.
tried to achieve this using ACL but doesn't work.

Code: Select all

$Self->{TicketAcl}->{'Change owner on locked ticket-1'} = {
        # match properties
        Properties => {
            # current ticket match properties
            Ticket => {
                Lock => ['lock'],
            }
        },
        # return not possible options (black list)
        Possible => {
            Action => {
                AgentTicketOwner => 1,
            }
        }
    };
thanks for help
OTRS 3.1.7 on Linux RedHat with MySQL database connected to an Active Directory for Agents and Customers.
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Change ownership of locked tickets

Post by crythias »

They should be able to do that if the have rw in the queue's group.
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
girishmungra
Znuny newbie
Posts: 59
Joined: 24 Jul 2012, 18:20
Znuny Version: 3.1.7
Real Name: Girish Mungra

Re: Change ownership of locked tickets

Post by girishmungra »

I confirm they do have rw on the queues. Even I as admin I can't change ownership of a locked ticket.
Any config I missed?
OTRS 3.1.7 on Linux RedHat with MySQL database connected to an Active Directory for Agents and Customers.
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Change ownership of locked tickets

Post by crythias »

girishmungra wrote: Even I as admin I can't change ownership of a locked ticket.
Button not there? Check group membership in SysConfig for Module Registration
Check ACL for owner permissions

Other error? Please describe what logs occur when you try to change owner.
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
girishmungra
Znuny newbie
Posts: 59
Joined: 24 Jul 2012, 18:20
Znuny Version: 3.1.7
Real Name: Girish Mungra

Re: Change ownership of locked tickets

Post by girishmungra »

Button is there for unlocked tickets only.
When locked, only the actual owner sees the 'owner' button.

In Ticket -> Frontend::Agent::ModuleRegistration
Frontend::Module###AgentTicketOwner is enabled and no group specified (default option)

and in Ticket -> Frontend::Agent::Ticket::ViewOwner

Ticket::Frontend::AgentTicketOwner###Permission is set to 'owner' (again default)

No ACL
OTRS 3.1.7 on Linux RedHat with MySQL database connected to an Active Directory for Agents and Customers.
girishmungra
Znuny newbie
Posts: 59
Joined: 24 Jul 2012, 18:20
Znuny Version: 3.1.7
Real Name: Girish Mungra

Re: Change ownership of locked tickets

Post by girishmungra »

Anything for me?
OTRS 3.1.7 on Linux RedHat with MySQL database connected to an Active Directory for Agents and Customers.
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Change ownership of locked tickets

Post by crythias »

check owner checkbox in group membership.
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