Hi,
In the view "front-end | order | show" you would find:
<div id="hikashop_order_left_part" class="hikashop_order_left_part"><?php
echo $this->store_address;
?></div>
Which would display the store address.
So, you can edit this view (and same view but in the backend) in order to put something like:
<div id="hikashop_order_left_part" class="hikashop_order_left_part"><?php
if($this->element->order_created > 1357549494) // the timestamp value of the date
echo $this->store_address;
else {
echo 'My old company name<br/>'.
'my old company address...<br/>'.
'etc....';
}
?></div>
Regards,