[MIG] report_xml: Migration to 12.0

This commit is contained in:
ernesto
2019-06-10 13:29:22 -04:00
committed by Enric Tobella
parent 6c584c5e3b
commit 886ac9b71c
22 changed files with 727 additions and 152 deletions

View File

@@ -1,16 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<template id="demo_report_xml_view">
<t t-call="report_xml.utf8_header">
<root>
<user t-foreach="docs" t-as="doc">
<name t-esc="doc.name"/>
<vat t-esc="doc.vat"/>
</user>
</root>
</t>
<root>
<user t-foreach="docs" t-as="doc">
<name t-esc="doc.name"/>
<vat t-esc="doc.vat"/>
</user>
</root>
</template>
<report id="demo_xml_report"
name="report_xml.demo_report_xml_view"
string="Demo xml report"
@@ -18,5 +16,4 @@
print_report_name="'Demo xml report'"
file="report_xml.xml"
model="res.company"/>
</odoo>