I have a statusbar like that :
<field name="state" widget="statusbar" statusbar_visible="draft,confirmed,done" statusbar_colors='{"refused":"red"}'/>
I want to change the statusbar_visible
value if the state is refused
.
Is it possible ? If yes, how can i do that ?
I've begin with that : attrs="{'statusbar_visible': [('status','=','refused')]}"
but this isn't gonna work.