Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
3 Antwoorden
90733 Weergaven

Hello, I don't understand how this readonly options works in openerp. For example in a module I create this column:

'number': fields.float('Number', readonly=True)

So when I install module with this column, in OpenERP object that is added it should show that this column is readonly? because in my case id does not. It shows that readonly option is not chosen for that column. Why it is ignoring my option for readonly=True?

Avatar
Annuleer
Beste antwoord

If you read your openerp log you can find this:

openerp.osv.fields: required=True is deprecated: making a boolean field `required` has no effect, as NULL values are automatically turned into False. args: {'readonly': True}

Set the readonly in python code, like this:

'number': fields.float('Number', {'readonly': True})

or in a xml, like this:

<field name="number" readonly="1" />
Avatar
Annuleer

I think the python code should be 'number': fields.float('Number', readonly=True).

In the new version of openerp this syntax is deprecated. The right syntax is the code in the answer.

how set field attr to readonly by function.?

It's better if you open a new answer for this.

Beste antwoord

Check first if there is no readonly='False' for this field in your view xml definition !

Avatar
Annuleer
Beste antwoord

That definition is for the column in the database only, not what is displayed to the user via the XML view.

You must include <field name="number" readonly="1" /> in your XML to make it read only to the user.

The proper python code would be 'number': fields.float('Number', {'readonly': True}) but then how will you ever get information into the field via the web interface? This will make the field readonly for every user. Even if you later set the field to readonly="0" in the XML, when you goto save your data, an error will be thrown.

Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
3
sep. 21
4950
1
sep. 15
8837
4
apr. 25
4853
3
jul. 23
5600
2
mrt. 22
10390