Hello guys,
I'm a developer discovering the wolrd of Odoo, I'm doing a report and I'm trying to append some data to an element as bellow:
<odoo>
<report
id="ofic_presup_conta"
model="atencion.cuidadana"
string="Oficio dirigido a la dirección de presupuesto y contabilidad"
report_type="qweb-pdf"
name="atencion_cuidadana.ofic_presup_conta_template"
print_report_name="('Oficio_direccion_de_presupuesto_contabilidad-' + str(object.id).zfill(4))"
paperformat="report_utils.hoja_carta"
/>
<template id="atencion_cuidadana.ofic_presup_conta_template">
<t t-name="myList">
<ul><li>Two</li></ul>
</t>
<t t-extend="myList">
<t t-jquery="ul" t-operation="append"><li>Three</li></t>
</t>
<t t-extend="myList">
<t t-jquery="ul" t-operation="prepend"><li>One</li></t>
</t>
</template>
</odoo>
The output of this report shows the <li> elements after the <ul> (not as expected):
<ul data-oe-model="ir.ui.view" data-oe-id="489" data-oe-field="arch" data-oe-xpath="/t[1]/t[1]/ul[1]"><li>Two</li></ul>
<li data-oe-model="ir.ui.view" data-oe-id="489" data-oe-field="arch" data-oe-xpath="/t[1]/t[2]/t[1]/li[1]">Three</li>
<li data-oe-model="ir.ui.view" data-oe-id="489" data-oe-field="arch" data-oe-xpath="/t[1]/t[3]/t[1]/li[1]">One</li>
What would be the correct ussage of t-extend and t-jquery to append data into the <ul> element. I'm on Odoo 11.Many thanks in advance!