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.

22 lines
646 B

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