Skip to content
Snippets Groups Projects
Commit d4c0360b authored by Johannes Hörmann's avatar Johannes Hörmann
Browse files

fix after operating state Productprice

parent ec80b80d
No related branches found
No related tags found
No related merge requests found
import("system.neon");
import("system.vars");
if(vars.get("$sys.operatingstate") != undefined
&& vars.get("$sys.operatingstate") != null
&& vars.get("$sys.operatingstate") == neon.OPERATINGSTATE_VIEW
&& vars.get("$local.value")) // local.value is previous operationgstate or null. This fixes not working Filter
if(vars.exists("$sys.operatingstate")
&& vars.get("$sys.operatingstate") == neon.OPERATINGSTATE_VIEW
&& vars.get("$local.value")) // local.value is previous operationgstate or null. This fixes not working Filter
{
neon.refresh();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment