コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
4298 ビュー

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?

アバター
破棄

detail your question.

最善の回答

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

 

アバター
破棄
最善の回答

write this code in .py file

_columns = {

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

}

_defaults = {

 'gender' : 'm'

}

アバター
破棄