You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.4 KiB
34 lines
1.4 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<template id="sale_order_portal_content_inherit"
|
|
name="Delivery Addresses in Portal"
|
|
inherit_id="sale.sale_order_portal_content">
|
|
<xpath expr="//table[@id='sales_order_table'] //th[2]"
|
|
position="before">
|
|
<th class="text-right">Delivery Address</th>
|
|
</xpath>
|
|
<xpath expr="//table[@id='sales_order_table'] //tbody //tr //td[2]"
|
|
position="before">
|
|
<td class="text-right">
|
|
<div id="address_deliver">
|
|
<span t-field="line.delivery_addr_id"/>
|
|
</div>
|
|
</td>
|
|
</xpath>
|
|
</template>
|
|
<template id="report_saleorder_document_add_delivery_address"
|
|
inherit_id="sale.report_saleorder_document">
|
|
<xpath expr="//table/thead//tr[1]//th[1]" position="after">
|
|
<th class="text-left">Delivery Address</th>
|
|
</xpath>
|
|
<xpath expr="//table/tbody[hasclass('sale_tbody')]//tr[1]//td[1]"
|
|
position="after">
|
|
<td>
|
|
<span t-field="line.delivery_addr_id"/>
|
|
<span t-field="line.delivery_addr_id.street"/>
|
|
<span t-field="line.delivery_addr_id.city"/>
|
|
<span t-field="line.delivery_addr_id.zip"/>
|
|
</td>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|