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

I want to add default value on database since I may want to edit records without using odoo

what should I put to give a default value on batabase?

Avatar
Opusti

detail your question.

Best Answer

yes can use use the default values for the fields,

if you want some small number of fields as default value means ,you can use

_default = {

 'your_field' : 'your_default_value'

}

example:

_default = {

 'name' : 'Andrew',

  'age' : 20

}

 

otherwise,if you want to diplay more values as default means ,you can use

default_get() method

 

Avatar
Opusti
Best Answer

write this code in .py file

_columns = {

     'gender' : fields.selection([('m','Male'),('f','Female')],'Gender')

}

_defaults = {

 'gender' : 'm'

}

Avatar
Opusti