<field name="sale_id_all" widget = "many2many_tags" attrs="{'invisible': ['|',('del_states','!=','all'),('saleorder_checkbox','!=',True)]}" domain = "[('state','not in',('draft','cancel'))]"/>
in same code if condition ('del_states','!=',done)
domain = "[('state','=','done')]",
if condition ('del_states','!=','pending')
domain = "[('state','not in',('draft','cancel','done'))]"
i want to change domain according to conditions how can i set multiple domain or any other way to solve this problem.?