In this article you will learn how to retrieve Selection field value in python instead of its key. For example you have a selection field which have values like [('a', 'A'), ('b','B'), ('c','C')].
Retrieving Selection Field value instead of key
code = fields.Selection([('a', 'A'), ('b','B'), ('c','C')])
If you get this field value in python its gives "a" instead of "A". To get actual value we will use below code snippet.
Method 1:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#syntax | |
some_variable = self._fields['your_selection_field'].selection | |
#Example | |
code = self._fields['code'].selection | |
# output: [('a', 'A'), ('b','B'), ('c','C')] | |
#To convert into python dictionary we will use dict keyword provided by python. | |
code_dict = dict(code) | |
#To get actual value we will pass key to above dictionary. | |
name = code_dict.get(self.code) |
Method 2:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Syntax | |
dict(self.fields_get(allfields=['field_name'])['field_name']['selection'])['key_of_selection_field'] | |
#If you want to get field value in same model in which you are working than use below code | |
code = dict(self.fields_get(allfields=['state'])['state']['selection'])['key'] | |
#Example | |
code = dict(self.fields_get(allfields=['code'])['code']['selection'])[self.code] | |
#If you want to get field value from another model than use below code | |
code = dict(self.env['your.model'].fields_get(allfields=['state'])['state']['selection'])['key'] | |
#Example | |
code = dict(self.env['your.model'].fields_get(allfields=['code'])['code']['selection'])[self.code] |
0 Comments