Unify Evaluatee Implementation
Description
Environment
Attachments
- 05 Mar 2025, 02:23 PM
blocks
is blocked by
relates to
Activity
Carlos Ruiz March 5, 2025 at 2:23 PM
We just found an issue trying to import the following CSV into Physical Inventory using the Import CSV Process
For testing you would need to create a template. The import works from the window, but not from the process.
This is because the Import CSV Process is using the window -1 for the context and the DefaultEvaluatee has a couple of validations for windowNo >= 0
Carlos Ruiz January 23, 2025 at 12:19 AM
We are migrating an instance to release-12 and found the following issue:
There is a virtual column on C_Order with the following WHERE:
C_Order.AD_Client_ID IN (0,@AD_Client_ID@)
This was working fine in release-11, but fails in release-12.
We found the cause on this GridFieldVO line:
vo.ColumnSQL = Env.parseContext(ctx, -1, vo.ColumnSQL, false, true);
in release-11 this line was returning 0 for @AD_Client_ID@ context variable, but in release-12 is returning an empty string.
Following the implementation in release-11 the method org.compiere.util.Env.getContext(Properties, int, String, boolean)
was called, and this method has a fallback to #context when the variable is not found.
In the DefaultEvaluatee implementation that method is not called, resulting in an empty string.
Heng Sin Low June 11, 2021 at 5:57 AM
Additional findings from @Chuck Boecking:
Here are the implementations I have found. I hope this helps!
Env.parseContext(...)
MMailText.parse(...) and MMailText.parseVariable(...)
Evaluator.java
GridField.getDefaultFrom...(...)
Copy from @Carlos Ruiz comments at IDEMPIERE-4824:
I think something that would be highly desirable would be to have a single consistent way of managing the *Logic fields.
I have tried to document that in wiki but is really hard to get a single point - my last finding for example was that @AnyVariable.Column@ syntax doesn’t work the same everywhere:
In process parameters this syntax just works for columnnames where the tablename is implicit in the name (like Table Direct).
In Tab Display Logic this notation doesn't work
And I think there are some points where the foreign key is with a dot, and other points where the foreign key is within < >
That’s really crazy to maintain and remember, every time I need something special on context logic and it doesn’t work I need to go to debug mode.