backout 206712e3cad5 / IDEMPIERE-1177 Record Info not showing UUID for zero ID records, messed out creation of users on window, will need to find a better solution for this

This commit is contained in:
Carlos Ruiz 2013-07-17 12:26:51 -05:00
parent a8766eb276
commit bef6671726
1 changed files with 1 additions and 1 deletions

View File

@ -1276,7 +1276,7 @@ public abstract class PO
protected void load (int ID, String trxName)
{
if (log.isLoggable(Level.FINEST)) log.finest("ID=" + ID);
if (ID > 0 || (ID == 0 && MTable.isZeroIDTable(get_TableName())))
if (ID > 0)
{
setKeyInfo();
m_IDs = new Object[] {new Integer(ID)};