Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odgovori
8486 Prikazi

Hi everyone,

I have a field elist_price in my cham module, I have inherit the crm.lead view and i want to readonly field upon state field. when we set attr like this:

<field name="elist_price" attrs="{'readonly':[('state','not in','['draft']') ] }"/>

so error in terminal

Cannot eval "{'readonly':[('state','not in','['draft']') ] }".

And state field is in 'crm.lead',

elist_price is in 'my_object1'

How we set read only this thing.please give a proper solution. thank's

Avatar
Opusti
Best Answer

Hi,

systax error ['draft'] and not '['draft']':

<field name="elist_price" attrs="{'readonly':[('state','not in',['draft']) ] }"/>

and not

<field name="elist_price" attrs="{'readonly':[('state','not in','['draft']') ] }"/>
Avatar
Opusti
Best Answer

Hi,

you should write like this

<field name="elist_price" attrs="{'readonly':[('state','not in','draft') ] }"/>
Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
2
nov. 20
17818
1
sep. 19
4012
1
jan. 16
14696
0
mar. 15
3222
2
maj 24
9117