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.
36 lines
1.3 KiB
36 lines
1.3 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record id="studio_report_wizard" model="ir.ui.view">
|
|
<field name="name">Studio Reports</field>
|
|
<field name="model">studio.report.wizard</field>
|
|
<field name="arch" type="xml" >
|
|
<form>
|
|
<group>
|
|
<group>
|
|
<field name="date_from"/>
|
|
<field name="customer_id"/>
|
|
</group>
|
|
<group>
|
|
<field name="date_to"/>
|
|
</group>
|
|
</group>
|
|
<footer>
|
|
<button name="print_reports"
|
|
type="object"
|
|
string="Print"
|
|
class="oe_highlight"/>
|
|
or
|
|
<button special="cancel" string="Cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<act_window id="launch_studio_report_wizard"
|
|
name="Studio Reports"
|
|
res_model="studio.report.wizard"
|
|
view_mode="form"
|
|
target="new"/>
|
|
</data>
|
|
</odoo>
|