[Solved]Customer TicketOverview Ticket Title vs Last Subject

Moderator: crythias

Locked
Mydnyte
Znuny newbie
Posts: 25
Joined: 23 Feb 2012, 01:03
Znuny Version: 3x1x1
Real Name: Jeremy

[Solved]Customer TicketOverview Ticket Title vs Last Subject

Post by Mydnyte »

Good afternoon,

I'm trying to implement the same functionality from:

Frontend::Agent::TicketOverview
Ticket::Frontend::OverviewSmall###ColumnHeader

TicketTitle / LastCustomerSubject

Into the CustomerTicketOverview screen. (The screen that the customer sees with a listing of their current tickets)
My Customers are complaining that they are seeing the last subject in the overview, not the ticket title.
I would like to force the ticket title in this view. I haven't been able to find any configuration options related to this.

It's a definite possibility that I have overlooked something here. I appreciate any feedback.

Thanks.
Last edited by Mydnyte on 06 Sep 2012, 18:36, edited 1 time in total.
OTRS 3.2.10 - FAQ - KUBUNTU 13.04 - MySQL 5.5 - Apache2.2
CSL
Znuny expert
Posts: 159
Joined: 11 Nov 2011, 19:27
Znuny Version: 3.0.11

Re: Customer TicketOverview Ticket Title vs Last Subject

Post by CSL »

You can use the CustomerTicketOverView.dtl file to customize this. Copy and paste the code for existing columns to add new ones, or change the existing code to alter the data that is placed in each column.
Backend: OTRS 3.0.11 RedHat Enterprise Linux 6.2, Apache, MySQL with replication
Frontend: OTRS 3.0.11 RedHat Enterprise Linux 6.2 with SELinux, Apache SSL
Mydnyte
Znuny newbie
Posts: 25
Joined: 23 Feb 2012, 01:03
Znuny Version: 3x1x1
Real Name: Jeremy

Re: Customer TicketOverview Ticket Title vs Last Subject

Post by Mydnyte »

CSL wrote:You can use the CustomerTicketOverView.dtl file to customize this. Copy and paste the code for existing columns to add new ones, or change the existing code to alter the data that is placed in each column.
Thanks for pointing me in the right direction.

I edited the following item in /Kernel/Output/HTML/Standard/CustomerTicketOverview.dtl

Code: Select all

<!-- dtl:block:Record -->
                <tr title="$QData{"TicketNumber"}" class="MasterAction">
                    <td class="Ticket">
                        <a href="$Env{"Baselink"}Action=CustomerTicketZoom;TicketNumber=$LQData{"TicketNumber"}" class="MasterActionLink">$QData{"TicketNumber"}</a>
                    </td>
                    <td class="Title">
                        <div>
                            <h2>$QData{"Title","60"}</h2>
                            &nbsp;-&nbsp; $QData{"Subject","200"}
                        </div>
                    </td>
                    <td class="Status" title="$Text{"$Data{"State"}"}">$Text{"$Data{"State"}"}</td>
                    <td class="Age" title="$TimeShort{"$Data{"Created"}"}">$QData{"Age","20"}</td>
                </tr>
<!-- dtl:block:Record -->
From:

Code: Select all

<h2>$QData{"Subject","60"}</h2>
To:

Code: Select all

<h2>$QData{"Title","60"}</h2>
And it worked like a charm.

Thanks!
OTRS 3.2.10 - FAQ - KUBUNTU 13.04 - MySQL 5.5 - Apache2.2
Locked