IDEMPIERE-5363 - fix MRefList cache (#1417)
Co-authored-by: matheus-marcelinux <matheusmarcelino1998@hotmail.com>
This commit is contained in:
parent
9f22430aad
commit
097ca0569e
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue