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.
 
 
 
 
 

56 lines
2.9 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Loan Management Action For Conf Settings-->
<record id="res_config_settings_action" model="ir.actions.act_window">
<field name="name">Settings</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">res.config.settings</field>
<field name="view_mode">form</field>
<field name="target">inline</field>
<field name="context">{'module' : 'advanced_loan_management', 'bin_size':
False}
</field>
</record>
<!-- Loan Management Form View For Conf Settings-->
<record id="res_config_settings_view_form" model="ir.ui.view">
<field name="name">res.config.settings.view.form.inherit.loan.management
</field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="base.res_config_settings_view_form"/>
<field name="arch" type="xml">
<xpath expr="//div[hasclass('settings')]" position="inside">
<div class="app_settings_block"
data-string="Loan_management" id="loan"
string="Loan_management"
data-key="advanced_loan_management">
<h2>Loan_management</h2>
<div class="row mt16 o_settings_container"
id="loan_product_setting">
<div class="col-12 col-lg-6 o_setting_box">
<div class="o_setting_left_pane"/>
<div class="o_setting_right_pane">
<span class="o_form_label">Products</span>
<div class="text-muted content-group mt16">
<span>Products For Invoicing Repayment
</span>
<group>
<field name="interest_product_id"
class="text-center"
style="width: 70%; min-width: 4rem;"/>
</group>
<group/>
<group>
<field name="repayment_product_id"
class="text-center"
style="width: 70%; min-width: 6rem;"/>
</group>
</div>
</div>
</div>
</div>
</div>
</xpath>
</field>
</record>
</odoo>