blob: ebb3418ce56c346bea872fa6af1f9d7f1fb08774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0"?>
<odoo>
<template id="report_saleorder_document_inherit_sale_stock" inherit_id="sale.report_saleorder_document">
<xpath expr="//div[@name='expiration_date']" position="after">
<div class="col-3" t-if="doc.incoterm" groups="sale_stock.group_display_incoterm">
<strong>Incoterm:</strong>
<p t-field="doc.incoterm.code"/>
</div>
</xpath>
</template>
<template id="report_invoice_document_inherit_sale_stock" inherit_id="account.report_invoice_document">
<xpath expr="//div[@name='reference']" position="after">
<div class="col-auto mw-100 mb-2" t-if="o.invoice_incoterm_id" groups="sale_stock.group_display_incoterm" name="invoice_incoterm_id">
<strong>Incoterm:</strong>
<p class="m-0" t-field="o.invoice_incoterm_id.code"/>
</div>
</xpath>
</template>
</odoo>
|