IDEMPIERE-152 Show UUID value on Record Info - Fixed issues with dataNew and dataIgnore
This commit is contained in:
parent
54a89b0300
commit
2f6a80e4b6
|
@ -2339,7 +2339,7 @@ public class GridTab implements DataStatusListener, Evaluatee, Serializable
|
||||||
StringBuffer info = new StringBuffer(getTableName());
|
StringBuffer info = new StringBuffer(getTableName());
|
||||||
|
|
||||||
/* get UUID */
|
/* get UUID */
|
||||||
if (!e.isInserting() && e.getCurrentRow() >= 0)
|
if (!e.isInserting() && e.getCurrentRow() >= 0 && e.getCurrentRow() < e.getTotalRows())
|
||||||
{
|
{
|
||||||
PO po = m_mTable.getPO(e.getCurrentRow());
|
PO po = m_mTable.getPO(e.getCurrentRow());
|
||||||
if (po != null) {
|
if (po != null) {
|
||||||
|
|
Loading…
Reference in New Issue