IDEMPIERE-836 Zk: Zoom across doesn't work if there are 10+ related records.

This commit is contained in:
Heng Sin Low 2013-04-09 13:30:31 +08:00
parent 7d77ed1675
commit 3fd80354bf
1 changed files with 3 additions and 3 deletions

View File

@ -620,10 +620,10 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
private void initialQuery(final MQuery query, GridTab mTab, final Callback<MQuery> callback)
{
// We have a (Zoom) query
if (query != null && query.isActive() && query.getRecordCount() < 10)
if (query != null && query.isActive())
{
callback.onCallback(query);
return;
callback.onCallback(query);
return;
}
//