Hi,
I wanted to overwrite the state field in sale order so that i add new values and delete existing ones.
for adding i used the attribute selection_add and it works fine. but for deleting it does not.
state = fields.Selection(selection_add=[('a','AA'),('b','BB')], selection_remove=['draft'])
is this the correct syntax to do that (deleting i mean) ?