Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
40
account_asset_compute_batch/wizard/account_asset_compute.xml
Executable file
40
account_asset_compute_batch/wizard/account_asset_compute.xml
Executable file
@@ -0,0 +1,40 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user