Skip to Content
Menú
This question has been flagged
2 Respostes
8113 Vistes

I want to make a field readonly in edit mode and editable in create mode in openerp. I want a field for which value is specified while creating and later it should not be changed.

This is my code:

<field name = "apply_to_future" class="oe_edit_only" attrs="{'readonly':[('status','=','Draft')]}" />

 

Thanks in advance

Avatar
Descartar
Best Answer

Have you tried including ID in the view and set the attrs="{'readonly':[('id','>',0)]}" ?

Avatar
Descartar
Autor Best Answer

Thanks Ivan,

We got, 

attrs="{'readonly':[('pay_value','!=',False)]}"

Avatar
Descartar
Autor

attrs="{'readonly':[('pay_value','!=',False)]}"