IDEMPIERE-3282 - recent itens with incorrect label
This commit is contained in:
parent
16f4f75364
commit
2d14bf3ba2
|
@ -42,7 +42,7 @@ import org.osgi.service.event.Event;
|
||||||
public class MRecentItem extends X_AD_RecentItem
|
public class MRecentItem extends X_AD_RecentItem
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
private static final long serialVersionUID = 6899554875745832L;
|
private static final long serialVersionUID = 6899554875745832L;
|
||||||
|
|
||||||
|
@ -258,7 +258,7 @@ public class MRecentItem extends X_AD_RecentItem
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean delete(boolean force) {
|
public boolean delete(boolean force) {
|
||||||
Integer ii = new Integer (getAD_RecentItem_ID());
|
Integer ii = new Integer (getAD_RecentItem_ID());
|
||||||
|
@ -301,13 +301,13 @@ public class MRecentItem extends X_AD_RecentItem
|
||||||
if (! Util.isEmpty(titleLogic))
|
if (! Util.isEmpty(titleLogic))
|
||||||
recordIdentifier.append(" ").append(titleLogic);
|
recordIdentifier.append(" ").append(titleLogic);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (recordIdentifier.length() == 0) {
|
if (recordIdentifier.length() == 0) {
|
||||||
if (po.get_ColumnIndex("DocumentNo") > 0)
|
if (po.get_ColumnIndex("DocumentNo") != -1)
|
||||||
recordIdentifier.append(" ").append(po.get_ValueAsString("DocumentNo"));
|
recordIdentifier.append(" ").append(po.get_ValueAsString("DocumentNo"));
|
||||||
if (po.get_ColumnIndex("Value") > 0)
|
if (po.get_ColumnIndex("Value") != -1)
|
||||||
recordIdentifier.append(" ").append(po.get_ValueAsString("Value"));
|
recordIdentifier.append(" ").append(po.get_ValueAsString("Value"));
|
||||||
if (po.get_ColumnIndex("Name") > 0)
|
if (po.get_ColumnIndex("Name") != -1)
|
||||||
recordIdentifier.append(" ").append(po.get_ValueAsString("Name"));
|
recordIdentifier.append(" ").append(po.get_ValueAsString("Name"));
|
||||||
if (recordIdentifier.length() == 0)
|
if (recordIdentifier.length() == 0)
|
||||||
recordIdentifier.append(" ").append(po.toString());
|
recordIdentifier.append(" ").append(po.toString());
|
||||||
|
|
Loading…
Reference in New Issue