Related links: Add status condition

Marielle Beset
Tera Contributor

Hello,

 

Our demands contains a Related links to Create Demand Budget. I want to add a condition to this ui action that these links are no longer available from state 6. I have already added && (current.state !=9 || current.state !=8), but it is still visible. How can I adjust this?

 

1 ACCEPTED SOLUTION

JenniferRah
Mega Sage

How about removing this:

&& (current.state !=9 || current.state !=8)

 

and change it to this:

&& (current.state < 6)

View solution in original post

2 REPLIES 2

JenniferRah
Mega Sage

How about removing this:

&& (current.state !=9 || current.state !=8)

 

and change it to this:

&& (current.state < 6)

Marielle Beset
Tera Contributor

Hello Jennifer, thank you, this was indeed the solution!