Some one know how i get this

Someone know how i get this information in shop. i will have so i can insert nex delivery

Look on the picture

If you want to show a date:
<?php echo date('Y-m-d', strtotime($date. ' + 3 days')); ?>
where 3 is how many days after actual day is the delivery date.
But probably I did not understand your question right.

Where a insert this?

Want the text Next delivery to our warehouse and the date when the delivery is calculated

Next delivery to our warehouse: look for title_delivery_statuses in admin/translations

date when the delivery is calculated: in public_html\includes\templates\default.catalog\views\box_product.inc.php
locate 
<?php echo $delivery_status; ?>
and replace with
<?php echo date('Y-m-d', strtotime($date. ' + 3 days')); ?>
Remember to back up before.

This thread has been closed due to long inactivity. Posting to it is not possible.
View code on GitHub