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
995 B
21 lines
995 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Credit Amount Tree view -->
|
|
<record id="credit_amount_view_list" model="ir.ui.view">
|
|
<field name="name">credit.amount.view.list</field>
|
|
<field name="model">credit.amount</field>
|
|
<field name="priority">1</field>
|
|
<field name="arch" type="xml">
|
|
<list string="Credit Amount" editable="bottom">
|
|
<field name="customer_id" readonly="state in ['approved']"/>
|
|
<field name="amount" readonly="state in ['approved']"/>
|
|
<field name="approve_date" invisible="not hide_approve"/>
|
|
<field name="state"/>
|
|
<field name="hide_approve" optional="hide"/>
|
|
<button name="action_approve" string="Approve" type="object"
|
|
invisible="hide_approve"
|
|
groups="customer_credit_payment_website.credit_approval_access"/>
|
|
</list>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|