Hello,
- Activate Developer Mode
- Navigate to Technical → Views → Report Delivery Document
- Replace this bloc
<t t-set="address">
<div name="div_outgoing_address" style="width: 100%; display: flex; align-items: start;" >
<div name="outgoing_delivery_address" style="position: absolute; left: 40px; top: 0;" t-if="o.should_print_delivery_address()">
<strong>Delivery Address:</strong>
<div t-out="o.move_ids[0].partner_id or o.partner_id"
t-options="{"widget": "contact", "fields": ["address", "name", "phone"], "no_marker": True, "phone_icons": True}"/>
</div>
<div name="outgoing_warehouse_address" style="position: absolute; left: 40px; top: 0;" t-elif="o.picking_type_id.code != 'internal' and o.picking_type_id.warehouse_id.partner_id">
<strong>Warehouse Address</strong>
<div t-field="o.picking_type_id.warehouse_id.partner_id" t-options="{"widget": "contact", "fields": ["address", "name", "phone"], "no_marker": True, "phone_icons": True}"/>
</div>
</div>
<br></br><br></br>
</t>


Thanks
