https://sourceforge.net/tracker/?func=detail&aid=2904257&garoup_id=176962&atid=879332 [ wrong dynamic validation sql for rma line ]
- need special handling for _ID in parseContext, consistent with the Evaluator behaviour.
This commit is contained in:
parent
cea35ad9aa
commit
d13a17195a
|
@ -1181,9 +1181,16 @@ public final class Env
|
||||||
ctxInfo = getContext(ctx, token); // get global context
|
ctxInfo = getContext(ctx, token); // get global context
|
||||||
if (ctxInfo.length() == 0)
|
if (ctxInfo.length() == 0)
|
||||||
{
|
{
|
||||||
s_log.config("No Context Win=" + WindowNo + " for: " + token);
|
if (token.endsWith("_ID"))
|
||||||
if (!ignoreUnparsable)
|
{
|
||||||
return ""; // token not found
|
outStr.append("0");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
s_log.config("No Context Win=" + WindowNo + " for: " + token);
|
||||||
|
if (!ignoreUnparsable)
|
||||||
|
return ""; // token not found
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
outStr.append(ctxInfo); // replace context with Context
|
outStr.append(ctxInfo); // replace context with Context
|
||||||
|
|
Loading…
Reference in New Issue