This reverts commit db833e3665
.
This commit is contained in:
parent
4c4981533e
commit
7e5a1d89ee
|
@ -5753,7 +5753,9 @@ public abstract class PO
|
|||
} else {
|
||||
fkval = Integer.valueOf(get_ValueAsInt(index));
|
||||
}
|
||||
if (fkval != null) {
|
||||
if (fkval != null
|
||||
&& ( (fkval instanceof Integer && ((Integer)fkval).intValue() > 0)
|
||||
|| (fkval instanceof String && ((String)fkval).length() > 0) )) {
|
||||
MTable ft = MTable.get(getCtx(), fktab);
|
||||
boolean systemAccess = false;
|
||||
String accessLevel = ft.getAccessLevel();
|
||||
|
|
Loading…
Reference in New Issue