<?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-auto col-3 mw-100 mb-2" t-if="doc.incoterm">
                <strong>Incoterm:</strong>
                <p t-if="doc.incoterm_location">
                    <span t-field="doc.incoterm.code"/> <br/>
                    <span t-field="doc.incoterm_location"/>
                </p>
                <p t-else="" t-field="doc.incoterm.code" class="m-0"/>
            </div>
        </xpath>
    </template>
</odoo>
