Bonjour,
Il s'agit effectivement de la vue "order | invoice" du backend.
Vous trouverez dans la vue
<?php
if(!empty($this->element->order_invoice_number)) {
echo JText::_('INVOICE').': '.$this->element->order_invoice_number;
} else {
echo JText::_('INVOICE').': '.@$this->element->order_number;
}
?>
Qui affiche le numéro de facture si l'information est présente ou alors affiche le numéro de commande.
Vous pouvez donc le modifier comme cela:
<?php
if(!empty($this->element->order_invoice_number)) {
echo JText::_('INVOICE').': '.$this->element->order_invoice_number;
echo '<br/>'; // ajouter un retour à la ligne
echo JText::_('ORDER_NUMBER').': '.$this->element->order_number;
} else {
echo JText::_('INVOICE').': '.@$this->element->order_number;
}
?>
Cordialement,