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.
21 lines
831 B
21 lines
831 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Loan Documents Action-->
|
|
<record id="loan_documents_action" model="ir.actions.act_window">
|
|
<field name="name">Loan Documents</field>
|
|
<field name="res_model">loan.documents</field>
|
|
<field name="view_mode">tree,form</field>
|
|
</record>
|
|
<!-- Loan Documents Tree View -->
|
|
<record id="loan_documents_view_tree" model="ir.ui.view">
|
|
<field name="name">loan.documents.view.tree</field>
|
|
<field name="model">loan.documents</field>
|
|
<field name="priority" eval="8"/>
|
|
<field name="arch" type="xml">
|
|
<tree string="Loan Documents" editable="bottom">
|
|
<field name="loan_proofs"/>
|
|
<field name="company_id"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
</odoo>
|