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.
13 lines
453 B
13 lines
453 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<template id="sale_report_inherit" inherit_id="sale.report_saleorder_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>
|