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.
14 lines
576 B
14 lines
576 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<template id="report_saleorder_document"
|
|
inherit_id="sale.report_saleorder_document">
|
|
<!-- Template for add details of adult person in sale order document-->
|
|
<xpath expr="//div[@id='informations']" position="inside">
|
|
<div t-if="doc.adult_person_id.name"
|
|
class="col-auto col-3 mw-100 mb-2">
|
|
<strong>Adult Person:</strong>
|
|
<p class="m-0" t-field="doc.adult_person_id"/>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|