OTRS 3.0.0 beta 3 Dashboard Customer Information einblenden

Hilfe zu Znuny Problemen aller Art
Locked
youkai
Znuny newbie
Posts: 4
Joined: 07 Jun 2010, 15:10
Znuny Version: 3.0.8

OTRS 3.0.0 beta 3 Dashboard Customer Information einblenden

Post by youkai »

Hallo,

Ich habe vor einiger Zeit einmal in meiner OTRS 2.4 Installation folgende Änderungen vorgenommen um im Dashboard zu sehen von wem denn die Anfrage gekommen ist.

Code: Select all

In dtl:block:ContentLargeTicketGenericRow section, add the following before
the "Time" TD element:

<td width="10%">
  <a
href="$Env{"Baselink"}Action=AgentTicketCustomer&TicketID=$QData{"TicketID"}
"
onmouseover="window.status='$JSText{"Customer history"}'; return true;"
onmouseout="window.status='';">
  <div title="$QData{"CustomerUserID"}">$QData{"CustomerID","15"}</div>
  </a>
</td>
A few lines later in the dtl:block:ContentLargeTicketGenericNone block
increase the colspan from 3 to 4.
nach dieser Anleitung http://lists.otrs.org/pipermail/otrs/20 ... 27771.html

Weiss vielleicht jemand wie ich das in der V3 realisiere?

Vielen Dank
otrs: 3.0.8 || mysql: 5.1.41 || Ubuntu 10.04
Joool
Znuny newbie
Posts: 16
Joined: 06 Oct 2010, 15:21
Znuny Version: 3.0

Re: OTRS 3.0.0 beta 3 Dashboard Customer Information einblen

Post by Joool »

Hey,

Go to /opt/otrs/Kernel/Output/HTML/Standard/AgentDashboardTicketGeneric.dtl

Add these lines (additional lines shown for placement)

<!-- dtl:block:ContentLargeTicketGenericRowMeta -->
<td class="W10pc">
<a href="$Env{"Baselink"}Action=AgentTicketZoom;TicketID=$Data{"TicketID"}" title="$QData{"Title"}" class="AsBlock">$Data{"TicketNumber"}</a>
</td>
<td class="W50pc">
<div title="$QData{"Title"}">$QData{"Title","70"}</div>
</td>
<td>
<div title="$QData{"CustomerUserID"}">$QData{"CustomerID","15"}</div>
</td>
<td>$QData{"Time"}</td>
</tr>
<!-- dtl:block:ContentLargeTicketGenericRow -->

And Voilà there you go
Running: OTRS 3.0.10
Testing: OTRS 3.1.1
On Ubuntu Server 10.4
youkai
Znuny newbie
Posts: 4
Joined: 07 Jun 2010, 15:10
Znuny Version: 3.0.8

Re: OTRS 3.0.0 beta 3 Dashboard Customer Information einblen

Post by youkai »

Hallo,

Hey funktioniert wunderbar! Vielen Dank für deine Hilfe!
otrs: 3.0.8 || mysql: 5.1.41 || Ubuntu 10.04
Locked