Hi,
You can do that.
First, make an override for the view via the menu Display>Views.
I suppose we're talking about the delivery note available by HikaShop without the PDF invoice plugin installed.
In that case, it's the view file order / invoice.
It will generate a file administrator/atum/html/com_hikashop/order/invoice.php for the override.
Copy this file to the same folder with another name via FTP.
For example administrator/atum/html/com_hikashop/order/delivery_note.php
Then, in your override, you can add at the beginning such code:
<?php
if($this->invoice_type != 'full') {
require __DIR__.'/delivery_note.php';
return;
}
?>That way, you now have two different override files, one for the invoice, one for the delivery note, and you can modify them independently.