IDEMPIERE-5774 - Fixed bug that shows cross tenant record on info window when the where clause is wrong (#2058)

This commit is contained in:
Diego Ruiz 2023-10-17 03:43:22 +02:00 committed by GitHub
parent 74e8226ab0
commit b272bd0c5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -905,7 +905,9 @@ public class InfoWindow extends InfoPanel implements ValueChangeListener, EventL
if (builder.length() > 0) {
builder.append(" AND ");
}
builder.append("(");
builder.append(infoWhereClause);
builder.append(")");
p_whereClause = builder.toString();
}