2018-01-16 06:58:15 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-01-16 11:34:37 +01:00
|
|
|
<flectra>
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
<record id="account_common_report_view" model="ir.ui.view">
|
|
|
|
<field name="name">Common Report</field>
|
|
|
|
<field name="model">account.common.report</field>
|
|
|
|
<field name="arch" type="xml">
|
|
|
|
<form string="Report Options">
|
|
|
|
<field name="company_id" invisible="1"/>
|
|
|
|
<group col="4">
|
|
|
|
<field name="target_move" widget="radio"/>
|
|
|
|
<field name="date_from"/>
|
|
|
|
<field name="date_to"/>
|
|
|
|
</group>
|
2018-01-17 11:23:19 +01:00
|
|
|
<group col="2">
|
|
|
|
<group>
|
2018-01-23 07:40:28 +01:00
|
|
|
<field name="branch_id" groups="base_branch_company.group_multi_branch"/>
|
2018-01-17 11:23:19 +01:00
|
|
|
</group>
|
|
|
|
|
|
|
|
</group>
|
2018-01-16 06:58:15 +01:00
|
|
|
<group>
|
|
|
|
<field name="journal_ids" widget="many2many_tags" options="{'no_create': True}"/>
|
|
|
|
</group>
|
|
|
|
<footer>
|
|
|
|
<button name="check_report" string="Print" type="object" default_focus="1" class="oe_highlight"/>
|
|
|
|
<button string="Cancel" class="btn btn-default" special="cancel" />
|
|
|
|
</footer>
|
|
|
|
</form>
|
|
|
|
</field>
|
|
|
|
</record>
|
|
|
|
|
|
|
|
<record id="action_account_common_menu" model="ir.actions.act_window">
|
|
|
|
<field name="name">Common Report</field>
|
|
|
|
<field name="res_model">account.common.report</field>
|
|
|
|
<field name="view_type">form</field>
|
|
|
|
<field name="view_mode">form</field>
|
|
|
|
<field name="view_id" ref="account_common_report_view"/>
|
|
|
|
<field name="target">new</field>
|
|
|
|
</record>
|
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
</flectra>
|