Prestashop: aggiungere il COSTO SPEDIZIONE al DDT

Se volete aggiungere nel vostro DDT o nota di consegna il campo "
COSTO SPEDIZIONE",è sufficiente una piccola modifica in uno dei files che generano il PDF del DDT.


Nello specifico,
se non usate override, potete modificare ad esempio il file:

delivery-slip.summary-tab.tpl
nella cartella
/pdf

Overo:
/pdf/delivery-slip.summary-tab.tpl


<table>

    <tr>
        <th class="header small" valign="middle">COSTO SPEDIZIONE</th>
    </tr>    
    <tr>
        <td class="center small white">
{displayPrice currency=$order->id_currency price=$order->total_shipping_tax_incl}</td>

</tr>

</table>






Commenti