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.
53 lines
2.3 KiB
53 lines
2.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
<record id="view_property_config_settings" model="ir.ui.view">
|
|
<field name="name">Library settings</field>
|
|
<field name="model">library.config.settings</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Configure Library" class="oe_form_configuration">
|
|
<header>
|
|
<button string="Apply" type="object" name="execute" class="oe_highlight"/>
|
|
or
|
|
<button string="Cancel" type="object" name="cancel" class="oe_link"/>
|
|
</header>
|
|
<separator string="Library Configuration"/>
|
|
<group>
|
|
<label for="id" string="Store" />
|
|
<div>
|
|
<div>
|
|
<label for="store" />
|
|
<field name="store" class="oe_inline"/>
|
|
</div>
|
|
</div>
|
|
<label for="id" string="Account" />
|
|
<div>
|
|
<div>
|
|
<label for="account_id" />
|
|
<field name="account_id" class="oe_inline"/>
|
|
</div>
|
|
</div>
|
|
<label for="id" string="Fine Amount" />
|
|
<div>
|
|
<div>
|
|
<label for="fine_per_day" />
|
|
<field name="fine_per_day" class="oe_inline"/>
|
|
</div>
|
|
</div>
|
|
</group>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_library_settings" model="ir.actions.act_window">
|
|
<field name="name">Configure library</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">library.config.settings</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">inline</field>
|
|
</record>
|
|
|
|
<menuitem id="menu_library_settings" name="Library" parent="base.menu_config"
|
|
sequence="15" action="action_library_settings"/>
|
|
</data>
|
|
</openerp>
|
|
|