After the code
<th class="hikashop_order_date_title title" align="center">
<?php echo JHTML::_('grid.sort', JText::_('DATE'), 'a.order_created', $this->pageInfo->filter->order->dir,$this->pageInfo->filter->order->value ); ?>
</th>
add:
<th class="hikashop_order_date_title title" align="center">
<?php echo JHTML::_('grid.sort', 'Delivery estimate', 'a.deliveryestimate', $this->pageInfo->filter->order->dir,$this->pageInfo->filter->order->value ); ?>
</th>
and after the code:
<td class="hikashop_order_date_value">
<?php echo hikashop_getDate($row->order_created,'%Y-%m-%d %H:%M');?>
</td>
add:
<td class="hikashop_order_date_value">
<?php echo $row->deliveryestimate;?>
</td>