mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
[IMP] report_async 14.0
This commit is contained in:
28
report_async/views/assets.xml
Normal file
28
report_async/views/assets.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<template
|
||||
id="report_async_assets_backend"
|
||||
inherit_id="web.assets_backend"
|
||||
name="Report Async Assets"
|
||||
>
|
||||
<xpath expr="//script[last()]" position="after">
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/report_async/static/src/js/components/action_menus.js"
|
||||
/>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template
|
||||
id="report_async_tests"
|
||||
name="Report Async Tests"
|
||||
inherit_id="web.qunit_suite_tests"
|
||||
>
|
||||
<xpath expr="//script[last()]" position="after">
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/report_async/static/src/tests/report_async_tests.js"
|
||||
/>
|
||||
</xpath>
|
||||
</template>
|
||||
</odoo>
|
||||
17
report_async/views/ir_actions_report.xml
Normal file
17
report_async/views/ir_actions_report.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<record id="async_act_report_xml_view" model="ir.ui.view">
|
||||
<field name="name">async_report_view</field>
|
||||
<field name="model">ir.actions.report</field>
|
||||
<field name="inherit_id" ref="base.act_report_xml_view" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//page[@name='advanced']/group" position="after">
|
||||
<group name="async_opts" string="Async Options">
|
||||
<field name="async_report" />
|
||||
<field name="async_no_records" />
|
||||
<field name="async_mail_recipient" />
|
||||
</group>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user