Owner name on the customer interface

Moderator: crythias

Locked
dcorbera
Znuny expert
Posts: 164
Joined: 15 Mar 2013, 17:09
Znuny Version: OTRS 3.2

Owner name on the customer interface

Post by dcorbera »

We would put agent's name on the user interface. In the Ticket -> Frontend::Customer::Ticket::ViewZoom, on the AttributesView, we put the responsible and the owner, but on the customer interface appears the agent code, and we would the agent name. How can we do it?
Using:
OTRS HELP DESK 3.3.5
OTRS ITSM 3.3.5
POSTGRES 8.3
reneeb
Znuny guru
Posts: 5018
Joined: 13 Mar 2011, 09:54
Znuny Version: 6.0.x
Real Name: Renée Bäcker
Company: Perl-Services.de
Contact:

Re: Owner name on the customer interface

Post by reneeb »

You have to change the Perl code... Hint: With this code you get the name of the agent:

Code: Select all

    $Param{OwnerName} = $Self->{AgentUserObject}->UserName(
        UserID => $Article{OwnerID},
    );
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Locked