Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
4909 Vizualizări

i have one function field with type integer. i want to set default value for it ? how it is possible ?

i used that field in other module with one2many relation and display it in tree view under other module.

Imagine profil
Abandonează
Cel mai bun răspuns

- first make the functional field writable (if you don't like it to be writable by the end user, then addtionally you'll need to set it as readonly in view)

in v7.0 it may be something like:

    def _set_my_field(self, cr, uid, ids, field_name, field_value, arg, context=None):
        pass

 

    'my_field': fields.function(_compute_my_field, fnct_inv=_set_my_field, method=Truestring="My Field", type="integer")

- then set default value by the ordinary way as for other fields...

Imagine profil
Abandonează