I have a selection field and I want to inherit and update the selection field without overriding, here is what I am implementing.
Base field:
test_field = fields.Selection([ ('a', 'A'),('c', 'C'),],'Test Field')
The way I inherited
test_field = fields.Selection(selection_add=[('b', 'B')])
But this updates the field by updating the selection value in the end like this:
[('a', 'A'),('c', 'C'), ('b', 'B')]
however I want something like this:
[('a', 'A'),('b', 'B'), ('c', 'C')]
Just wondering if there is way to accomplish this without actually overriding the field. Any ideas or thoughts would be appreciated. Thanks.