Zusätzliche Spalte in der Queue-Ansicht

Hilfe zu Znuny Problemen aller Art
Locked
bexorzist
Znuny newbie
Posts: 14
Joined: 20 Jun 2011, 10:45
Znuny Version: 6.4
Real Name: Thomas

Zusätzliche Spalte in der Queue-Ansicht

Post by bexorzist »

Hallo,

wir würden in unserer Queue-Ansicht gerne zusätzlich eine Spalte darstellen, welche den Inhalt von Freie Felder / Release eines Tickets listet, da diese Angabe intern genutzt wird.

Ist das ein größere Akt, bzw. hat jemand ein Beispiel dafür?

Vielen Dank im Voraus
bx
Misfitz
Znuny newbie
Posts: 43
Joined: 22 Feb 2012, 16:21
Znuny Version: 3_3_3
Real Name: Patrick Veit
Company: Ametras mobility

Re: Zusätzliche Spalte in der Queue-Ansicht

Post by Misfitz »

Hallo,

also ich denke Du kannst das über folgende .dtl machen.

- AgentDashboardTicketGeneric.dtl

Code: Select all

<!-- dtl:block:ContentLargeTicketGenericRowMeta -->
            <td class="W10pc">
                <a href="$Env{"Baselink"}Action=AgentTicketZoom;TicketID=$Data{"TicketID"}" title="$QData{"Title"}" class="AsBlock MasterActionLink">$Data{"TicketNumber"}</a>
            </td>
            <td class="W50pc">
                <div title="$QData{"Title"}">$QData{"Title","70"}</div>
            </td>
            <td class="W10pc">$QData{"Queue"}</td> <!-- add if you want to see the Queue -->
			<td class="W10pc">$QData{"Owner"}</td> <!-- add this line for the owner-->
			<td class="W10pc">$QData{"Created"}</td>
        </tr>
<!-- dtl:block:ContentLargeTicketGenericRow -->
- AgentDashboardTicketMyTicket.dtl

Code: Select all

<!-- 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 class="W10pc">$QData{"Queue"}</td> <!-- add if you want to see the Queue -->
			<td class="W10pc">$QData{"Owner"}</td> <!-- add this line for the owner-->
			<td class="W10pc">$QData{"State"}</td> <!-- add this line for the Status-->
			<td class="W10pc">$QData{"Created"}</td>
        </tr>
<!-- dtl:block:ContentLargeTicketGenericRow -->
Locked