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.
42 lines
1.8 KiB
42 lines
1.8 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Action for the form view of the wizard -->
|
|
<record id="dynamic_action_view_form" model="ir.ui.view">
|
|
<field name="name">dynamic.action.view.form</field>
|
|
<field name="model">dynamic.action</field>
|
|
<field name="arch" type="xml">
|
|
<form name="report">
|
|
<center>
|
|
<span>Select model and Record :</span>
|
|
<field name="resource_ref"/><br/><br/><br/>
|
|
<field name="res_model" invisible="1"/>
|
|
<button name="action_print_report" type="object"
|
|
class="btn btn-primary wizard_btn">
|
|
<i class="fa fa-print mr-2"/>
|
|
Print
|
|
</button>
|
|
<button name="action_download_report"
|
|
class="btn btn-primary wizard_btn" type="object">
|
|
<i class="fa fa-download mr-2"/>
|
|
Download
|
|
</button>
|
|
<button name="action_open_report" type="object"
|
|
class="btn btn-primary wizard_btn">
|
|
<i class="fa fa-file-text"/>
|
|
Open
|
|
</button>
|
|
<button name="action_share_email"
|
|
class="btn btn-primary wizard_btn" type="object"
|
|
attrs="{'invisible': [('res_model', '=', 'stock.picking')]}">
|
|
<i class="fa fa-envelope fa-fw"/>
|
|
Share By Email
|
|
</button>
|
|
</center>
|
|
<footer>
|
|
<button class="btn-secondary" string="Cancel"
|
|
special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|