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.
60 lines
2.8 KiB
60 lines
2.8 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<menuitem id="account_dynamic_report" sequence="15"
|
|
name="Dynamic Reports" parent="account.menu_finance_reports"/>
|
|
|
|
<record id="ins_general_ledger_wizard_view" model="ir.ui.view">
|
|
<field name="name">dynamic.general.ledger.view</field>
|
|
<field name="model">dynamic.general.ledger</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<group col="4">
|
|
<field name="company_id" groups="base.group_multi_company"/>
|
|
<field name="date_from"/>
|
|
<field name="date_to"/>
|
|
<field name="include_details"/>
|
|
</group>
|
|
|
|
<group col="2">
|
|
<field name="account_ids" widget="many2many_tags"
|
|
domain="[('company_id','=',company_id)]"
|
|
options="{'no_create_edit': True,'no_create': True, 'no_quick_create': True}"/>
|
|
<field name="account_tag_ids" widget="many2many_tags"
|
|
options="{'no_create_edit': True,'no_create': True, 'no_quick_create': True}"/>
|
|
<field name="journal_ids" widget="many2many_tags"
|
|
domain="[('company_id','=',company_id)]"
|
|
options="{'no_create_edit': True,'no_create': True, 'no_quick_create': True}"/>
|
|
<field name="analytic_ids" widget="many2many_tags"
|
|
domain="[('company_id','=',company_id)]"
|
|
options="{'no_create_edit': True,'no_create': True, 'no_quick_create': True}"/>
|
|
<field name="analytic_tag_ids" widget="many2many_tags"
|
|
domain="['|',('company_id','=',company_id),('company_id','=',False)]"
|
|
options="{'no_create_edit': True,'no_create': True, 'no_quick_create': True}"/>
|
|
</group>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
<record id="ins_trial_balance_wizard_view" model="ir.ui.view">
|
|
<field name="name">dynamic.trial.balance.view</field>
|
|
<field name="model">dynamic.trial.balance</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<group col="4">
|
|
<field name="company_id" groups="base.group_multi_company"/>
|
|
<field name="date_from"/>
|
|
<field name="date_to"/>
|
|
</group>
|
|
|
|
<group col="2">
|
|
<field name="analytic_ids" widget="many2many_tags"
|
|
domain="[('company_id','=',company_id)]"
|
|
options="{'no_create_edit': True,'no_create': True, 'no_quick_create': True}"/>
|
|
</group>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
</odoo>
|
|
|