Sandra-66 Posted May 30, 2019 Share Posted May 30, 2019 Bonjour à tous, Comme indiqué dans le titre, je souhaiterais afficher le numéro de suivi dans les factures, mais je connais pas le code à insérer. J'ai testé avec "Followup" qui apparaît dans les emails envoyé au client mais cela ne donne rien. Merci d'avance de votre aide ! Sandra Voici l'affichage de mon fichier invoice-summary-tab.tpl. Je suis en version 1.6.1.23. <table id="summary-tab" width="100%"> <tr> <th class="header small" valign="middle">{l s='Order Number:' pdf='true'}</th> <th class="header small" valign="middle">{l s='Order Date:' pdf='true'}</th> <th class="header small" valign="middle">{l s='Payment Method:' pdf='true'}</th> <th class="header small" valign="middle">{if isset($carrier)}<b>{l s='Carrier:' pdf='true'}{/if}</b></th> </tr> <tr> <td class="center small white">{$order->getUniqReference()}</td> <td class="center small white">{dateFormat date=$order->date_add full=0}</td> <td class="center small white">{foreach from=$order_invoice->getOrderPaymentCollection() item=payment} {$payment->payment_method} {displayPrice currency=$payment->id_currency price=$payment->amount} {foreachelse} {l s='No payment' pdf='true'} {/foreach} </td> <td class="center small white">{if isset($carrier)} {$carrier->name} {/if}</td> </tr> </table> Link to comment Share on other sites More sharing options...
tuk66 Posted June 7, 2019 Share Posted June 7, 2019 Essayez d'utiliser {$order->shipping_number} Link to comment Share on other sites More sharing options...
Sandra-66 Posted June 11, 2019 Author Share Posted June 11, 2019 Bonjour, Merci tuk66 pour votre réponse ! Est-ce que je dois également indiquer quelque chose comme {$order->getUniqReference()} dans la deuxième partie pour rapatrier le numéro ? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now