IDEMPIERE-5567 Support of UUID as Key (FHCA-4195) - fix issue reported by Murilo (#1868)

This commit is contained in:
Carlos Ruiz 2023-06-01 05:52:35 +02:00 committed by GitHub
parent 579f4837a9
commit 116b5b4db1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -810,7 +810,7 @@ public class GridTab implements DataStatusListener, Evaluatee, Serializable
+ " INNER JOIN AD_Column cc ON (r.AD_Key=cc.AD_Column_ID) "
+ "WHERE c.AD_Reference_ID IN (?,?,?,?)"
+ " AND c.ColumnName=?";
String refColName = DB.getSQLValueStringEx(null, sql1, DisplayType.Table, DisplayType.Search, DisplayType.TableUU, DisplayType.SearchUU);
String refColName = DB.getSQLValueStringEx(null, sql1, DisplayType.Table, DisplayType.Search, DisplayType.TableUU, DisplayType.SearchUU, colName);
// Reference Column found
if (refColName != null)
{