Skip to content

Commit

Permalink
Fixed error with Range parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed Oct 24, 2024
1 parent 23bfff5 commit ccdd8f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ private MPInstance generateProcessInstance() {
conditions.forEach(filter -> {
MProcessPara processParameter = process.getParameter(filter.getColumnName());
if(processParameter != null) {
Object value = ParameterUtil.getValueToFilterRestriction(processParameter.getAD_Reference_ID(), filter.getValue());
Object value = ParameterUtil.getValueToFilterRestriction(processParameter.getAD_Reference_ID(), filter.getFromValue());
processInstance.createParameter(sequence.addAndGet(10), filter.getColumnName(), value);
if(filter.getToValue() != null) {
Object valueTo = ParameterUtil.getValueToFilterRestriction(processParameter.getAD_Reference_ID(), filter.getToValue());
Expand Down

0 comments on commit ccdd8f9

Please sign in to comment.