Bonjour,
Dans le fichier "invoice" de la vue "order", vous avez ce code:
if(!empty($this->element->order_invoice_number)) {
echo JText::_('INVOICE').': '.$this->element->order_invoice_number;
} else {
echo JText::_('INVOICE').': '.@$this->element->order_number;
}
Cela affiche soit le numéro de facture si disponible, soit le numéro de commande.
Si vous voulez les deux, vous pouvez remplacer le code par:
if(!empty($this->element->order_invoice_number)) {
echo JText::_('INVOICE').': '.$this->element->order_invoice_number;
}
echo JText::_('INVOICE').': '.@$this->element->order_number;
Pour le frontend, c'est à peu près similaire dans le fichier "show" de la vue "order" :
if($this->invoice_type == 'order' || empty($this->element->order_invoice_number)) {
echo JText::_('HIKASHOP_ORDER').': '.@$this->element->order_number;
} else {
echo JText::_(strtoupper($this->invoice_type)).': '.@$this->element->order_invoice_number;
}
que vous pouvez remplacer par:
if(!empty($this->element->order_invoice_number)) {
echo JText::_(strtoupper($this->invoice_type)).': '.@$this->element->order_invoice_number;
}
echo JText::_('HIKASHOP_ORDER').': '.@$this->element->order_number;