23 lines
765 B
XML
Executable File
23 lines
765 B
XML
Executable File
<odoo>
|
|
<record id="view_action_plan_summary_wizard" model="ir.ui.view">
|
|
<field name="name">action_plan_summary_wizard.form</field>
|
|
<field name="model">action_plan_summary_wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Generate Summary Report by Sales Person">
|
|
|
|
<group>
|
|
|
|
<field name="sales_person_id"/>
|
|
<field name="select_week"/>
|
|
</group>
|
|
<footer>
|
|
<button type="object" name="generate_report" class="btn-primary"><i class="fa fa-file-text-o"></i> View Report</button>
|
|
|
|
<button string="Cancel" class="btn-secondary" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|