Skip to content

Commit

Permalink
#6548 Set isShowInactiveValues to lookup info
Browse files Browse the repository at this point in the history
#6548 Lookup Process parameters shall allow inactive records
  • Loading branch information
cristinamghita committed Apr 29, 2020
1 parent 1ecf790 commit 4d6b176
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Expand Up @@ -767,6 +767,7 @@ private static final MLookupInfo buildLookupInfo(final int windowNo, final ITabl
lookupInfo.setSecurityDisabled(false);
lookupInfo.setAutoComplete(tableRefInfo.isAutoComplete());
lookupInfo.setTranslated(isTranslated);
lookupInfo.setShowInactiveValues(tableRefInfo.isShowInactiveValues());

return lookupInfo;
}
Expand Down
Expand Up @@ -120,6 +120,7 @@ public final class MLookupInfo implements Serializable, Cloneable
public String InfoFactoryClass = null;
private boolean autoComplete = false;
private boolean queryHasEntityType = false;
private boolean showInactiveValues = false;

private boolean translated = false;

Expand Down Expand Up @@ -566,6 +567,16 @@ public boolean isAutoComplete()
{
return this.autoComplete;
}

void setShowInactiveValues(boolean showInactiveValues)
{
this.showInactiveValues = showInactiveValues;
}

public boolean isShowInactiveValues()
{
return this.showInactiveValues;
}

void setQueryHasEntityType(boolean queryHasEntityType)
{
Expand Down

0 comments on commit 4d6b176

Please sign in to comment.