Enhance to allow zooming to any level ( tested zooming from gl journal to the period tab in the calendar-year-period window )
Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2887701
This commit is contained in:
parent
f06f95ad72
commit
ca187b22b7
|
@ -1144,5 +1144,15 @@ DataStatusListener, IADTabpanel, VetoableChangeListener
|
||||||
public boolean isGridView() {
|
public boolean isGridView() {
|
||||||
return listPanel.isVisible();
|
return listPanel.isVisible();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public IADTabpanel findEmbeddedPanel(GridTab gTab) {
|
||||||
|
IADTabpanel panel = null;
|
||||||
|
for(EmbeddedPanel ep : includedPanel) {
|
||||||
|
if (ep.tabPanel.getGridTab().equals(gTab)) {
|
||||||
|
return ep.tabPanel;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return panel;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,7 @@ import java.util.Iterator;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
import java.util.TreeMap;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
|
|
||||||
|
@ -294,11 +295,23 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
|
||||||
|
|
||||||
m_onlyCurrentRows = embeddedTabindex < 0 && gridWindow.isTransaction();
|
m_onlyCurrentRows = embeddedTabindex < 0 && gridWindow.isTransaction();
|
||||||
|
|
||||||
|
MQuery detailQuery = null;
|
||||||
/**
|
/**
|
||||||
* Window Tabs
|
* Window Tabs
|
||||||
*/
|
*/
|
||||||
if (embeddedTabindex < 0)
|
if (embeddedTabindex < 0)
|
||||||
{
|
{
|
||||||
|
if (query != null && query.getZoomTableName() != null && query.getZoomColumnName() != null
|
||||||
|
&& query.getZoomValue() instanceof Integer && (Integer)query.getZoomValue() > 0)
|
||||||
|
{
|
||||||
|
if (!query.getZoomTableName().equalsIgnoreCase(gridWindow.getTab(0).getTableName()))
|
||||||
|
{
|
||||||
|
detailQuery = query;
|
||||||
|
query = new MQuery();
|
||||||
|
query.addRestriction("1=2");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int tabSize = gridWindow.getTabCount();
|
int tabSize = gridWindow.getTabCount();
|
||||||
|
|
||||||
for (int tab = 0; tab < tabSize; tab++)
|
for (int tab = 0; tab < tabSize; tab++)
|
||||||
|
@ -331,7 +344,7 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
|
||||||
toolbar.enableHistoryRecords(true);
|
toolbar.enableHistoryRecords(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (zoomToDetailTab(query))
|
if (detailQuery != null && zoomToDetailTab(detailQuery))
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -363,48 +376,11 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
|
||||||
gTab = gridWindow.getTab(tab);
|
gTab = gridWindow.getTab(tab);
|
||||||
if (gTab.isSortTab())
|
if (gTab.isSortTab())
|
||||||
continue;
|
continue;
|
||||||
if (gTab.getTabLevel() == 1 && gTab.getTableName().equalsIgnoreCase(query.getZoomTableName()))
|
if (gTab.getTableName().equalsIgnoreCase(query.getZoomTableName()))
|
||||||
{
|
{
|
||||||
GridField[] fields = gTab.getFields();
|
if (doZoomToDetail(gTab, query, tab)) {
|
||||||
for (GridField field : fields)
|
return true;
|
||||||
{
|
}
|
||||||
if (field.getColumnName().equalsIgnoreCase(query.getZoomColumnName()))
|
|
||||||
{
|
|
||||||
if (query.getZoomValue() != null && query.getZoomValue() instanceof Integer)
|
|
||||||
{
|
|
||||||
if (!includedMap.containsKey(gTab.getAD_Tab_ID()))
|
|
||||||
{
|
|
||||||
IADTabpanel tp = adTab.findADTabpanel(gTab);
|
|
||||||
tp.createUI();
|
|
||||||
tp.query();
|
|
||||||
}
|
|
||||||
GridTable table = gTab.getTableModel();
|
|
||||||
int count = table.getRowCount();
|
|
||||||
for(int i = 0; i < count; i++)
|
|
||||||
{
|
|
||||||
int id = table.getKeyID(i);
|
|
||||||
if (id == ((Integer)query.getZoomValue()).intValue())
|
|
||||||
{
|
|
||||||
if (!includedMap.containsKey(gTab.getAD_Tab_ID()))
|
|
||||||
{
|
|
||||||
setActiveTab(tab);
|
|
||||||
}
|
|
||||||
gTab.setCurrentRow(i);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (!includedMap.containsKey(gTab.getAD_Tab_ID()))
|
|
||||||
{
|
|
||||||
setActiveTab(tab);
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -412,6 +388,108 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private boolean doZoomToDetail(GridTab gTab, MQuery query, int tabIndex) {
|
||||||
|
GridField[] fields = gTab.getFields();
|
||||||
|
for (GridField field : fields)
|
||||||
|
{
|
||||||
|
if (field.getColumnName().equalsIgnoreCase(query.getZoomColumnName()))
|
||||||
|
{
|
||||||
|
gridWindow.initTab(tabIndex);
|
||||||
|
int parentId = DB.getSQLValue(null, "SELECT " + gTab.getLinkColumnName() + " FROM " + gTab.getTableName() + " WHERE " + query.getWhereClause());
|
||||||
|
if (parentId > 0)
|
||||||
|
{
|
||||||
|
Map<Integer, Object[]>parentMap = new TreeMap<Integer, Object[]>();
|
||||||
|
int index = tabIndex;
|
||||||
|
int oldpid = parentId;
|
||||||
|
GridTab currentTab = gTab;
|
||||||
|
while (index > 0)
|
||||||
|
{
|
||||||
|
index--;
|
||||||
|
GridTab pTab = gridWindow.getTab(index);
|
||||||
|
if (pTab.getTabLevel() < currentTab.getTabLevel())
|
||||||
|
{
|
||||||
|
gridWindow.initTab(index);
|
||||||
|
if (index > 0)
|
||||||
|
{
|
||||||
|
if (pTab.getLinkColumnName() != null && pTab.getLinkColumnName().trim().length() > 0)
|
||||||
|
{
|
||||||
|
int pid = DB.getSQLValue(null, "SELECT " + pTab.getLinkColumnName() + " FROM " + pTab.getTableName() + " WHERE " + currentTab.getLinkColumnName() + " = ?", oldpid);
|
||||||
|
if (pid > 0)
|
||||||
|
{
|
||||||
|
parentMap.put(index, new Object[]{currentTab.getLinkColumnName(), oldpid});
|
||||||
|
oldpid = pid;
|
||||||
|
currentTab = pTab;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
parentMap.clear();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
parentMap.put(index, new Object[]{currentTab.getLinkColumnName(), oldpid});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for(Map.Entry<Integer, Object[]> entry : parentMap.entrySet())
|
||||||
|
{
|
||||||
|
GridTab pTab = gridWindow.getTab(entry.getKey());
|
||||||
|
Object[] value = entry.getValue();
|
||||||
|
MQuery pquery = new MQuery(pTab.getAD_Table_ID());
|
||||||
|
pquery.addRestriction((String)value[0], "=", value[1]);
|
||||||
|
pTab.setQuery(pquery);
|
||||||
|
IADTabpanel tp = adTab.findADTabpanel(pTab);
|
||||||
|
tp.createUI();
|
||||||
|
tp.query();
|
||||||
|
}
|
||||||
|
|
||||||
|
MQuery targetQuery = new MQuery(gTab.getAD_Table_ID());
|
||||||
|
targetQuery.addRestriction(gTab.getLinkColumnName(), "=", parentId);
|
||||||
|
gTab.setQuery(targetQuery);
|
||||||
|
IADTabpanel gc = null;
|
||||||
|
if (!includedMap.containsKey(gTab.getAD_Tab_ID()))
|
||||||
|
{
|
||||||
|
gc = adTab.findADTabpanel(gTab);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ADTabpanel parent = (ADTabpanel)includedMap.get(gTab.getAD_Tab_ID());
|
||||||
|
gc = parent.findEmbeddedPanel(gTab);
|
||||||
|
}
|
||||||
|
gc.createUI();
|
||||||
|
gc.query(false, 0, 0);
|
||||||
|
|
||||||
|
GridTable table = gTab.getTableModel();
|
||||||
|
int count = table.getRowCount();
|
||||||
|
for(int i = 0; i < count; i++)
|
||||||
|
{
|
||||||
|
int id = table.getKeyID(i);
|
||||||
|
if (id == ((Integer)query.getZoomValue()).intValue())
|
||||||
|
{
|
||||||
|
if (!includedMap.containsKey(gTab.getAD_Tab_ID()))
|
||||||
|
{
|
||||||
|
setActiveTab(gridWindow.getTabIndex(gTab));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
IADTabpanel parent = includedMap.get(gTab.getAD_Tab_ID());
|
||||||
|
int pindex = gridWindow.getTabIndex(parent.getGridTab());
|
||||||
|
if (pindex >= 0)
|
||||||
|
setActiveTab(pindex);
|
||||||
|
}
|
||||||
|
gTab.setCurrentRow(i);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private void initEmbeddedTab(MQuery query, int tabIndex) {
|
private void initEmbeddedTab(MQuery query, int tabIndex) {
|
||||||
GridTab gTab = gridWindow.getTab(tabIndex);
|
GridTab gTab = gridWindow.getTab(tabIndex);
|
||||||
gTab.addDataStatusListener(this);
|
gTab.addDataStatusListener(this);
|
||||||
|
|
Loading…
Reference in New Issue