跳至内容
菜单
此问题已终结

I have this field in my model:

class Embed_Ingredients (models.Model): 
    _name = 'afribon_productapp.embed_ingredients'
     _description = 'a description'

    GLOBAL_IMPORT_OPTIONS = [('less', '<1 ton'), ('greater', '> 1 ton')] 

    procurement = fields.Selection ( [('imported', 'Imported'), ('local', 'Local')], default = 'imported', required = True )

    freight_greater_or_less = fields.Selection (
        GLOBAL_IMPORT_OPTIONS,
        string = "Weight",
        default = 'less'
    )



    @ api.onchange (' procurement ')
     def procurement_change (self):
     ' ''
        When user changes procument to `local`, add a new value to the global variable GLOBAL_IMPORT_OPTIONS
    '' '
     if self.procurement ==' local ':
  
        self.GLOBAL_IMPORT_OPTIONS.append ((' full_load_container ',' Full Load Container '))         
        print (self.GLOBAL_IMPORT_OPTIONS)
                
        
           
        


When the 'procurement' selection changes to local, I would like to add a new value into the  GLOBAL_IMPORT_OPTIONS variable

When I print the value of GLOBAL_IMPORT_OPTIONS in the terminal, I can see that the value has been appended into the list, but on the form view, I cannot see the new value in the selection dropdown. 

Thanks!


形象
丢弃
最佳答案

Hello,

There are two ways to define dynamic values for selection field. You can pass the method through selection attribute inside fields. 

Like below mentioned code:

selection_field= fields.Selection(selection=lambda self: self.dynamic_selection())

Inside this code there is a method dynamic_selection

You can pass list of tuples like the method mentioned below

def dynamic_selection(self):

      select = [('yes', 'Yes'), ('no', 'No')]

      return select

Conclusion: if you ever want to at some dynamic values inside the selection field then you can simply inherit that method and add values as per your requirements.

Hope your query is resolved by now. Feel free to ask your questions. 

Thanks

Anisha Bahukhandi

Technical Content Writer

形象
丢弃

Perfect solution to change the values of a selection field. Thanks!

最佳答案

there are 3 patterns in odoo code to get such thing it could as there

https://dev.to/kerbrose/dynamic-selection-list-in-odoo-for-selection-fields-16h8

形象
丢弃

nice work

最佳答案

if anybody looking for how this works in odoo15, it's as Anisha said except you use:
selection=lambda self: self.env['your.model']._function_to_populate_selection()


形象
丢弃
最佳答案

Hi, 

You can follow following link for this:

https://youtu.be/GPhgxxwprA4

Hope it helps,

Thanks

形象
丢弃
相关帖文 回复 查看 活动
2
9月 23
13134
2
9月 23
9313
2
11月 23
5349
1
5月 17
3364
1
12月 20
4884