Files
Odoo-18.0-20251222/account_asset_compute_batch/wizard/account_asset_compute.xml
tocmo0nlord adbe430761
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

41 lines
1.4 KiB
XML
Executable File

<odoo>
<record id="account_asset_compute_view_form" model="ir.ui.view">
<field name="name">account.asset.compute</field>
<field name="model">account.asset.compute</field>
<field
name="inherit_id"
ref="account_asset_management.account_asset_compute_view_form"
/>
<field name="arch" type="xml">
<group position="after">
<group>
<group>
<field name="use_batch" widget="boolean_toggle" />
<field
name="batch_name"
invisible="not use_batch"
required="use_batch"
/>
<field
name="description"
invisible="not use_batch"
required="use_batch"
/>
<field
name="delay_compute"
invisible="not use_batch"
/>
</group>
<group>
<field
name="profile_ids"
invisible="not use_batch"
widget="many2many_tags"
/>
</group>
</group>
</group>
</field>
</record>
</odoo>