OCA reporting engine fork for dev and update.
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.

19 lines
564 B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <odoo>
  3. <template id="demo_report_xml_view">
  4. <root>
  5. <user t-foreach="docs" t-as="doc">
  6. <name t-esc="doc.name"/>
  7. <vat t-esc="doc.vat"/>
  8. </user>
  9. </root>
  10. </template>
  11. <report id="demo_xml_report"
  12. name="report_xml.demo_report_xml_view"
  13. string="Demo xml report"
  14. report_type="qweb-xml"
  15. print_report_name="'Demo xml report'"
  16. file="report_xml.xml"
  17. model="res.company"/>
  18. </odoo>