2
0
account-financial-tools/account_asset_management/wizard/account_asset_remove_view.xml
Leonardo Pistone 99560a0cb9 move account_asset_management* out of __unported__
add asset management modules

asset mgt update

redo

synch asset mgt with recent V7 changes
2022-12-24 00:42:20 +01:00

37 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record model="ir.ui.view" id="account_asset_remove_form">
<field name="name">account.asset.remove.form</field>
<field name="model">account.asset.remove</field>
<field name="arch" type="xml">
<form string="Remove Asset" version="7.0">
<group colspan="4" col="4">
<field name="date_remove"/>
<field name="period_id"/>
<field name="sale_value"/>
<field name="account_sale_id" attrs="{'invisible': [('sale_value', '=', 0.0)], 'required': [('sale_value', '>', 0.0)]}"/>
<newline/>
<field name="posting_regime"/>
<newline/>
<field name="account_plus_value_id" attrs="{'invisible': [('posting_regime', '=', 'residual_value')], 'required': [('posting_regime', '!=', 'residual_value')]}"/>
<field name="account_min_value_id" attrs="{'invisible': [('posting_regime', '=', 'residual_value')], 'required': [('posting_regime', '!=', 'residual_value')]}"/>
<field name="account_residual_value_id" attrs="{'invisible': [('posting_regime', '!=', 'residual_value')], 'required': [('posting_regime', '=', 'residual_value')]}"/>
<separator string="Notes" colspan="4"/>
<field name="note" nolabel="1" colspan="4"/>
</group>
<newline/>
<separator colspan="4"/>
<footer>
<button string="Generate Removal entries" name="remove" type="object" class="oe_highlight"/>
or
<button string="Cancel" class="oe_link" special="cancel"/>
</footer>
</form>
</field>
</record>
</data>
</openerp>