IDEMPIERE-5363 - fix MRefList cache (#1417)

Co-authored-by: matheus-marcelinux <matheusmarcelino1998@hotmail.com>
This commit is contained in:
Carlos Ruiz 2022-08-01 14:52:19 +02:00 committed by GitHub
parent 9f22430aad
commit 097ca0569e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class MRefList extends X_AD_Ref_List implements ImmutablePOSupport
*/
public static synchronized MRefList get (Properties ctx, int AD_Reference_ID, String Value, String trxName)
{
StringBuilder sb = new StringBuilder(AD_Reference_ID)
StringBuilder sb = new StringBuilder(String.valueOf(AD_Reference_ID))
.append("|")
.append(Value);
String key = sb.toString();