Bonjour Nicolas,
Je n'ai pas de message d'erreur.
Lorsque je demande un bon de livraison, j'ai tout simplement rien dans le popup. Il est vide
Le code ci dessus est collé juste après :
<?php
$k=1-$k;
}
?>
<?php if($this->invoice_type=='full'){?>
<td>
<?php
if($this->config->get('price_with_tax')){
echo $this->currencyHelper->format($product->order_product_total_price,$this->order->order_currency_id);
}else{
echo $this->currencyHelper->format($product->order_product_total_price_no_vat,$this->order->order_currency_id);
} ?>
</td>
</tr>
<tr>
<td style="border-top:2px solid #B8B8B8;" colspan="<?php echo $colspan; ?>">
</td>
<td style="border-top:2px solid #B8B8B8;">
</td>
<td style="border-top:2px solid #B8B8B8;" class="key">
<label>
<?php print("Total HT");?>
</label>
</td>
<td style="border-top:2px solid #B8B8B8;">
<?php
if($this->config->get('price_with_tax')){
echo $this->currencyHelper->format($this->order->order_subtotal_no_vat,$this->order->order_currency_id);
}else{
echo $this->currencyHelper->format($this->order->order_subtotal_no_vat,$this->order->order_currency_id);
} ?>
</td>
</tr>
J'avais déjà effectué ce déplacement dans une version antérieure qui fonctionnait très bien.