Skip to Content
Menu
This question has been flagged
1 Reply
3419 Views

Need to remove create and edit option in partner field when the value of sale invoice type is credit. I found one similar answer in odoo forum but its not working

My code is:

<field name="partner_id" position="replace">

 <field name="partner_id" string="bhjk" domain="[('customer','=',True),('sale_invoice_type','=',sale_invoice_type)]"     context="{'search_default_customer':1, 'show_address': 1,'default_sale_invoice_type':sale_invoice_type}" attrs="  {'invisible': [('sale_invoice_type', '=', 'cash')]}" options='{"always_reload": True, "no_create_edit": True}'/>         

 <field name="partner_id" domain="[('customer','=',True),('sale_invoice_type','=',sale_invoice_type)]" context="{'search_default_customer':1, 'show_address': 1,'default_sale_invoice_type':sale_invoice_type}" attrs="{'invisible': [('sale_invoice_type', '=', 'credit')]}" options='{"always_reload": True}'/>

                    </field>

Avatar
Discard
Best Answer

Hi

Try with following attributes.

options='{"always_reload": True, "no_create_edit": True, "no_create":True}'


if it's not working then the problem is two condition with single field will  not work.

Simple you can add one more field partner_id1 

onchange partner_id1  update partner_id field


<field name="partner_id" position="replace">

 <field name="partner_id" string="bhjk" domain="[('customer','=',True),('sale_invoice_type','=',sale_invoice_type)]"     context="{'search_default_customer':1, 'show_address': 1,'default_sale_invoice_type':sale_invoice_type}" attrs="  {'invisible': [('sale_invoice_type', '=', 'cash')]}" options='{"always_reload": True, "no_create_edit": True}'/>         

 <field name="partner_id1" domain="[('customer','=',True),('sale_invoice_type','=',sale_invoice_type)]" context="{'search_default_customer':1, 'show_address': 1,'default_sale_invoice_type':sale_invoice_type}" attrs="{'invisible': [('sale_invoice_type', '=', 'credit')]}" options='{"always_reload": True}'/>

                    </field>



Avatar
Discard
Related Posts Replies Views Activity
9
Jun 23
12813
2
Jan 22
3679
2
Dec 21
7598
0
Jun 21
1793
0
Feb 21
2350