Hello,
I try to edit view "report_purchaseorder_document". I see a line of code which forms "delivery address" of my company:
<div t-if="o.dest_address_id"> <div t-field="o.dest_address_id" t-options="{"widget": "contact", "fields": ["address", "name", "phone", "fax"], "no_marker": True, "phone_icons": True}"/> </div>
As i understand it gets all the formed address from some kind of function "o.dest_address_id"?
My question is - how I can edit o.dest_address_id to change address output?
Lukas