[ 2009457 ] Posting Error

This commit is contained in:
Heng Sin Low 2008-07-28 08:07:36 +00:00
parent 46d4323227
commit 47a8700863
3 changed files with 34 additions and 8 deletions

View File

@ -492,7 +492,7 @@ public class WAcctViewer extends Window implements EventListener
table.setWidth("99%;"); table.setWidth("99%;");
// table.setMold("paging"); // table.setMold("paging");
// table.setPageSize(10); // table.setPageSize(10);
table.setVflex(true); // table.setVflex(true);
result.setWidth("100%"); result.setWidth("100%");
result.setHeight("100%"); result.setHeight("100%");
@ -889,7 +889,7 @@ public class WAcctViewer extends Window implements EventListener
vp = (ValueNamePair)listitem.getValue(); vp = (ValueNamePair)listitem.getValue();
if (vp.getName() != null && vp.getName().trim().length() > 0) if (vp.getName() != null && vp.getName().trim().length() > 0)
{ {
m_data.sortBy1 = vp.getName(); m_data.sortBy1 = vp.getValue();//vp.getName();
m_data.group1 = group1.isChecked(); m_data.group1 = group1.isChecked();
para.append(" - Sorting: ").append(m_data.sortBy1).append("/").append(m_data.group1); para.append(" - Sorting: ").append(m_data.sortBy1).append("/").append(m_data.group1);
} }
@ -903,7 +903,7 @@ public class WAcctViewer extends Window implements EventListener
vp = (ValueNamePair)listitem.getValue(); vp = (ValueNamePair)listitem.getValue();
if (vp.getName() != null && vp.getName().trim().length() > 0) if (vp.getName() != null && vp.getName().trim().length() > 0)
{ {
m_data.sortBy2 = vp.getName(); m_data.sortBy2 = vp.getValue();//vp.getName();
m_data.group2 = group2.isChecked(); m_data.group2 = group2.isChecked();
para.append(", ").append(m_data.sortBy2).append("/").append(m_data.group2); para.append(", ").append(m_data.sortBy2).append("/").append(m_data.group2);
} }
@ -917,7 +917,7 @@ public class WAcctViewer extends Window implements EventListener
vp = (ValueNamePair)listitem.getValue(); vp = (ValueNamePair)listitem.getValue();
if (vp.getName() != null && vp.getName().trim().length() > 0) if (vp.getName() != null && vp.getName().trim().length() > 0)
{ {
m_data.sortBy3 = vp.getName(); m_data.sortBy3 = vp.getValue();//vp.getName();
m_data.group3 = group3.isChecked(); m_data.group3 = group3.isChecked();
para.append(", ").append(m_data.sortBy3).append("/").append(m_data.group3); para.append(", ").append(m_data.sortBy3).append("/").append(m_data.group3);
} }
@ -931,7 +931,7 @@ public class WAcctViewer extends Window implements EventListener
vp = (ValueNamePair)listitem.getValue(); vp = (ValueNamePair)listitem.getValue();
if (vp.getName() != null && vp.getName().trim().length() > 0) if (vp.getName() != null && vp.getName().trim().length() > 0)
{ {
m_data.sortBy4 = vp.getName(); m_data.sortBy4 = vp.getValue();//vp.getName();
m_data.group4 = group4.isChecked(); m_data.group4 = group4.isChecked();
para.append(", ").append(m_data.sortBy4).append("/").append(m_data.group4); para.append(", ").append(m_data.sortBy4).append("/").append(m_data.group4);
} }
@ -965,6 +965,30 @@ public class WAcctViewer extends Window implements EventListener
table.appendChild(listhead); table.appendChild(listhead);
} }
// Elaine 2008/07/28
else
{
Listhead listhead = table.getListhead();
// remove existing column header
for (int i = listhead.getChildren().size() - 1; i >= 0; i--)
{
Object o = listhead.getChildren().get(i);
if(o instanceof Listheader)
{
Listheader listheader = (Listheader) o;
listhead.removeChild(listheader);
}
}
// add in new column header
for (int i = 0; i < rmodel.getColumnCount(); i++)
{
Listheader listheader = new Listheader(rmodel.getColumnName(i));
listhead.appendChild(listheader);
}
}
//
table.getItems().clear(); table.getItems().clear();
@ -1063,7 +1087,7 @@ public class WAcctViewer extends Window implements EventListener
{ {
String keyColumn = button.getName(); String keyColumn = button.getName();
log.info(keyColumn); log.info(keyColumn);
String whereClause = "IsSummary='N'"; String whereClause = ""; // Elaine 2008/07/28
String lookupColumn = keyColumn; String lookupColumn = keyColumn;
if ("Account_ID".equals(keyColumn)) if ("Account_ID".equals(keyColumn))
@ -1097,6 +1121,7 @@ public class WAcctViewer extends Window implements EventListener
whereClause = ""; whereClause = "";
String tableName = lookupColumn.substring(0, lookupColumn.length()-3); String tableName = lookupColumn.substring(0, lookupColumn.length()-3);
whereClause = tableName + ".IsSummary='N'" + whereClause; // Elaine 2008/07/28
InfoPanel info = InfoPanel.create(m_data.WindowNo, tableName, lookupColumn, "", false, whereClause); InfoPanel info = InfoPanel.create(m_data.WindowNo, tableName, lookupColumn, "", false, whereClause);

View File

@ -126,6 +126,7 @@ public class InfoBPartnerPanel extends InfoPanel implements EventListener, WTabl
executeQuery(); executeQuery();
renderItems(); renderItems();
} }
p_loadedOK = true; // Elaine 2008/07/28
} }

View File

@ -87,7 +87,6 @@ public class InfoGeneralPanel extends InfoPanel implements EventListener
private void initComponents() private void initComponents()
{ {
Hbox parameterPanel = new Hbox(); Hbox parameterPanel = new Hbox();
parameterPanel.setWidth("100%"); parameterPanel.setWidth("100%");
parameterPanel.appendChild(lbl1); parameterPanel.appendChild(lbl1);
@ -100,6 +99,7 @@ public class InfoGeneralPanel extends InfoPanel implements EventListener
parameterPanel.appendChild(txt4); parameterPanel.appendChild(txt4);
Vbox mainPanel = new Vbox(); Vbox mainPanel = new Vbox();
mainPanel.setWidth("100%");
mainPanel.appendChild(parameterPanel); mainPanel.appendChild(parameterPanel);
contentPanel.setWidth("99%"); contentPanel.setWidth("99%");
contentPanel.setHeight("400px"); contentPanel.setHeight("400px");