Hi arnask,
You can display these different informations, you have to edit:
yourSite\components\com_hikashop\views\order\view.html.php > function listing().
Add:
foreach($rows as $k => $hist){
$database->setQuery('SELECT * FROM '.hikashop_table('history').' WHERE history_id IN(SELECT max(history_id) FROM '.hikashop_table('history').' WHERE `history_order_id` = '.$rows[$k]->order_id.' AND history_type = "modification" )');
$rows[$k]->history = $database->loadObjectList();
}
Before:
$this->assignRef('rows',$rows);
And in :
yourSite\components\com_hikashop\views\order\tmpl\listing.php
Add:
<?php
echo '<br/>'.hikashop_getDate($row->order_modified,'%Y-%m-%d %H:%M').' / ';
echo $row->history[0]->history_new_status.' / ';
echo $row->history[0]->history_reason; ?>
In the listing table, after the line:
<?php echo $row->order_number; ?>