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.
|
- <?xml version="1.0"?>
- <odoo>
- <!--添加实现报表的文件-->
- <report id="action_library_book_report"
- string="Library Books"
- model="library.book"
- report_type="qweb-pdf"
- name="library_app.report_library_book_template"/>
-
- <!--报表模板-->
- <template id="report_library_book_template">
- <t t-call="web.html_container">
- <t t-call="web.external_layout">
- <div class="page">
- <!-- Report header content -->
- <t t-foreach="docs" t-as="o">
- <!-- Report row content -->
- </t>
- <!-- Report footer content -->
- </div>
- </t>
- </t>
- </template>
-
- <!--另一种格式是文档报表,每条记录是单独一页,比如邮件-->
- <!--<template id="report_todo_task_template">-->
- <!--<t t-call="web.html_container">-->
- <!--<t t-call="web.external_layout">-->
- <!--<t t-foreach="docs" t-as="o">-->
- <!--<div class="page">-->
- <!--<!– Report content –>-->
- <!--</div>-->
- <!--</t>-->
- <!--</t>-->
- <!--</t>-->
- <!--</template>-->
- </odoo>
|