-
Bug
-
Resolution: Won't Do
-
Major
-
None
-
7.11.0.GA
-
None
-
False
-
False
-
Release Notes
-
CR1
-
-
-
-
-
-
Undefined
-
This issue is related to the new feature implemented as DROOLS-5892
If user removes one of action call in BRL action column, the produced DRL is updated incorrectly. Please follow the steps to reproduce.
The original table produced a snippet
application.addAmount( 1 ); application.addExplanation( "exp" ); application.deadline( sdf.parse("08-Mar-2021") ); application.negateApproved( true ); application.numFunction( 1B );
After we remove addExplanation and deadline, we would expect:
application.addAmount( 1 );
application.negateApproved( true );
application.numFunction( 1B );
However the result is:
application.addAmount( 1 ); application.negateApproved( exp ); application.numFunction( 08-Mar-2021B );
- clones
-
DROOLS-5994 BRL action column containing method calls with template keys is modified inappropriately
- Closed
- is caused by
-
DROOLS-5892 Guided Rule Editor: Method calls do not support template keys
- Resolved
-
RHPAM-3183 Convert to XLS functionality generates incorrect result
- Closed