All,
Is there a way to test multiple conditions in the “Depends On” value within Customize Form?
For example I want to only show the field sales_order_item.size if the following two conditions are true:
sales_order_item.group != ‘Services’
and
sales_order_item.item_code != ‘Test’
So I added a Depends on saying:
eval:doc.item_group!=‘Services’ and eval:doc.item_code!=‘Test’
I also tried:
eval:doc.item_group!=‘Services’ and doc.item_code!=‘Test’
but neither works and result in me not being able to edit the Sales Order Item lines at all
Is this possible and if so, what is the syntax to do it?
Thanks.