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.
38 lines
1.9 KiB
38 lines
1.9 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<record id="account_budget_cross_over_summary_report_view" model="ir.ui.view">
|
|
<field name="name">account.budget.cross.over.summary.report.form</field>
|
|
<field name="model">account.budget.cross.over.summary.report</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Select Dates Period">
|
|
<group string="This wizard is used to print summary of budgets">
|
|
<field name="date_from"/>
|
|
<field name="date_to"/>
|
|
</group>
|
|
<footer>
|
|
<button name="check_report" string="Print" type="object" default_focus="1" class="btn-primary"/>
|
|
<button string="Cancel" class="btn-default" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_account_budget_cross_over_summary_report" model="ir.actions.act_window">
|
|
<field name="name">Print Summary</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">account.budget.cross.over.summary.report</field>
|
|
<field name="view_type">form</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="view_id" ref="account_budget_cross_over_summary_report_view"/>
|
|
<field name="target">new</field>
|
|
</record>
|
|
|
|
<record model="ir.values" id="account_budget_cross_over_summary_report_values">
|
|
<field name="model_id" ref="account_budget.model_crossovered_budget" />
|
|
<field name="name">Print Summary</field>
|
|
<field name="key2">client_print_multi</field>
|
|
<field name="value" eval="'ir.actions.act_window,' + str(ref('action_account_budget_cross_over_summary_report'))" />
|
|
<field name="key">action</field>
|
|
<field name="model">crossovered.budget</field>
|
|
</record>
|
|
</odoo>
|