mein Konto / Tracking ID

  • Wichtiger Hinweis Liebe Kunden, solltet Ihr den DATEV Rechnungsdatenservice 2.0 nutzen, dann müsst Ihr bis zum 30.06.2024 JTL-Wawi 1.9 installieren. Danach wird die Schnittstelle für ältere Versionen nicht mehr unterstützt.
  • JTL-Connect 2024: Ihr habt noch kein Ticket? Jetzt Early Bird Ticket zum Vorzugspreis sichern! HIER geht es zum Ticketverkauf

Heiko

Aktives Mitglied
25. November 2006
198
0
Hannover
Moin,

damit der Kunde unter "mein Konto" auch wirklich den Trackingcode sieht, muß in der jtl_bestellung.tpl (templates/TinyTemplate/tpl/inc/) eine Variable geändert werden. Sonst sieht er die Versandart als Trackinglink. Ich habe hier mal die tpl angepasst und cVersandartName ersetzt (rot):

{**
* @copyright (c) 2006-2010 JTL-Software-GmbH, all rights reserved
* @author JTL-Software-GmbH (Home: JTL Software)
*
* use is subject to license terms
* http://jtl-software.de/jtlshop3license.html
*}

<div id="content">
{include file='tpl_inc/inc_breadcrumb.tpl'}
<h1>{lang key="orderDetails" section="login"} {$Bestellung->cBestellNr} {lang key="from" section="login" alt_section="login,productDetails,productOverview,global,"} {$Bestellung->dErstelldatum_de}</h1>
<table class="tiny">
<thead>
<tr>
<th>Artikel</th>
<th class="tcenter">Anzahl</th>
<th class="tcenter">Stückpreis</th>
<th class="tcenter">Warenwert</th>
</tr>
</thead>
<tbody>
{foreach name=pos from=$Bestellung->Positionen item=Position}
<tr>
<td valign="top">
{if $Position->nPosTyp==1}
{$Position->cName}<br />

{if $Position->Artikel->cLocalizedVPE}
<b><small>{lang key="basePrice" section="global"}:</b> {$Position->Artikel->cLocalizedVPE[$NettoPreise]}</small><br />
{/if}

{foreach name=variationen from=$Position->WarenkorbPosEigenschaftArr item=WKPosEigenschaft}
<br>{$WKPosEigenschaft->cEigenschaftName}: {$WKPosEigenschaft->cEigenschaftWertName}
{if $WKPosEigenschaft->fAufpreis}
{$WKPosEigenschaft->cAufpreisLocalized[$NettoPreise]}
{/if}
</span>
{/foreach}
{else}
{$Position->cName}
{/if}
</td>
<td width="50" class="tcenter" valign="top">
{$Position->nAnzahl|replace_delim}
</td>
{if $Einstellungen.kaufabwicklung.bestellvorgang_einzelpreise_anzeigen=="Y"}
<td width="90" class="tcenter" valign="top">
{$Position->cEinzelpreisLocalized[$NettoPreise]}
</td>
{/if}
<td width="90" class="tcenter" valign="top">
{$Position->cGesamtpreisLocalized[$NettoPreise]}
</td>
</tr>
{/foreach}
</tbody>
</table>

<div class="tright container">

{if $Einstellungen.global.global_steuerpos_anzeigen!="N"}
{foreach name=steuerpositionen from=$Bestellung->Steuerpositionen item=Steuerposition}
<p>{$Steuerposition->cName}: {$Steuerposition->cPreisLocalized}</p>
{/foreach}
{/if}

{if $Bestellung->GuthabenNutzen == 1}
<p>{lang key="voucher" section="global"}: {$Bestellung->GutscheinLocalized}</p>
{/if}

<p>
<span class="price_label">{lang key="totalSum" section="global"}{if $Einstellungen.global.global_gesamtsummenanzeige!="gesamtsumme"} {lang key="gross" section="global"}{/if}:</span>
<span class="price">{$Bestellung->WarensummeLocalized[0]}</span>
</p>

</div>

<div class="container">
<ul class="hlist">
<li class="p50">
<h3>{lang key="billingAdress" section="checkout"}
{if $Lieferadresse->kLieferadresse == 0}
<br /><small style="font-weight:normal;">{lang key="shippingAdressEqualBillingAdress" section="account data"}</small> {*fix*}
{/if}
</h3>
{include file='tpl_inc/inc_rechnungsadresse.tpl'}
</li>
<li class="p50">
{if $Lieferadresse->kLieferadresse>0}
<h3>{lang key="shippingAdress" section="checkout"}</h3>
{include file='tpl_inc/inc_lieferadresse.tpl'}
{/if}
</li>
</ul>
</div>

<h3>{lang key="shippingOptions" section="global"}: {$Bestellung->cVersandartName}</h3>
{lang key="shippingStatus" section="login"}: {if $Bestellung->cStatus==4}{lang key="shippedOn" section="login"} {$Bestellung->dVersanddatum_de}{else}{lang key="notShippedYet" section="login"}{/if}
<p>{if $Bestellung->cTracking}{lang key="trackingId" section="login"}: <a href="{$Bestellung->cTrackingURL}">{$Bestellung->cTracking}</a>{/if}</p>
<p>{if $Bestellung->cVersandInfo}{lang key="shippingInfo" section="login"}: {$Bestellung->cVersandInfo}{/if}</p>

<ul class="hlist">
<li class="p50">
<h3>{lang key="paymentOptions" section="global"}: {$Bestellung->cZahlungsartName}</h3>
{lang key="paymentStatus" section="login"}:
{if $Bestellung->cStatus>=3}
{lang key="payedOn" section="login"} {$Bestellung->dBezahldatum_de}
{else}
{lang key="notPayedYet" section="login"}{/if}
</li>
<li class="p50 tright">
{if $Bestellung->cStatus==1 && ($Bestellung->Zahlungsart->cModulId != "za_ueberweisung_jtl" && $Bestellung->Zahlungsart->cModulId != "za_nachnahme_jtl"
&& $Bestellung->Zahlungsart->cModulId != "za_rechnung_jtl" && $Bestellung->Zahlungsart->cModulId != "za_barzahlung_jtl")}
<form action="bestellab_again.php" method="post">
<input type="hidden" name="kBestellung" value="{$Bestellung->kBestellung}" />
<input type="submit" value="{lang key="payNow" section="global"}" class="submit" />
</form>
{/if}
</li>
</ul>

<h3>{lang key="orderStatus" section="login"}: {$Bestellung->Status}</h3>

{if $Bestellung->cKommentar}
<h3>{lang key="yourOrderComment" section="login"}</h3>
<p>{$Bestellung->cKommentar}</p>
{/if}
{if $oTrustedShopsBewertenButton->cPicURL|count_characters > 0}
<p class="content"><a href="{$oTrustedShopsBewertenButton->cURL}" target="_blank"><img src="{$oTrustedShopsBewertenButton->cPicURL}" /></a><br /></p><br>
{/if}

{include file='tpl_inc/inc_seite.tpl'}
</div>
 

Ähnliche Themen