IDEMPIERE-512 Elements in the window Accounting Fact Reconciliation ,is looking bad / Thanks to Richard Morales

This commit is contained in:
Carlos Ruiz 2013-01-09 19:31:13 -05:00
parent c97bb89829
commit 5d5cb4112f
1 changed files with 41 additions and 24 deletions

View File

@ -109,7 +109,7 @@ implements IFormController, EventListener<Event>, WTableModelListener, ValueChan
private Button bGenerate = cp.createButton(ConfirmPanel.A_PROCESS);
private Button bReset = cp.createButton(ConfirmPanel.A_RESET);
private Button bZoom = cp.createButton(ConfirmPanel.A_ZOOM);
private Borderlayout commandLayout = new Borderlayout();
private Grid commandLayout = GridFactory.newGridLayout();
private Button bRefresh = cp.createButton(ConfirmPanel.A_REFRESH);
private Label labelDateAcct = new Label();
private WDateEditor fieldDateAcct = new WDateEditor();
@ -173,28 +173,35 @@ implements IFormController, EventListener<Event>, WTableModelListener, ValueChan
Rows rows = null;
Row row = null;
parameterLayout.setWidth("800px");
parameterLayout.setWidth("90%");
rows = parameterLayout.newRows();
row = rows.newRow();
row.appendChild(labelAcctSchema.rightAlign());
row.appendChild(fieldAcctSchema.getComponent());
row.appendChild(labelOrg.rightAlign());
row.appendChild(fieldOrg.getComponent());
row.appendCellChild(labelAcctSchema.rightAlign());
fieldAcctSchema.getComponent().setHflex("true");
row.appendCellChild(fieldAcctSchema.getComponent(), 2);
row.appendCellChild(labelOrg.rightAlign());
fieldOrg.getComponent().setHflex("true");
row.appendCellChild(fieldOrg.getComponent(), 2);
row = rows.newRow();
row.appendChild(labelAccount.rightAlign());
row.appendChild(fieldAccount);
row.appendChild(labelReconciled);
row.appendChild(isReconciled);
row.appendCellChild(labelAccount.rightAlign());
fieldAccount.setHflex("true");
row.appendCellChild(fieldAccount, 2);
row.appendCellChild(labelReconciled);
row.appendCellChild(isReconciled, 2);
row = rows.newRow();
row.appendChild(labelBPartner.rightAlign());
row.appendChild(fieldBPartner.getComponent());
row.appendChild(labelProduct.rightAlign());
row.appendChild(fieldProduct.getComponent());
row.appendCellChild(labelBPartner.rightAlign());
fieldBPartner.getComponent().setHflex("true");
row.appendCellChild(fieldBPartner.getComponent(), 2);
row.appendCellChild(labelProduct.rightAlign());
fieldProduct.getComponent().setHflex("true");
row.appendCellChild(fieldProduct.getComponent(), 2);
row = rows.newRow();
row.appendChild(labelDateAcct.rightAlign());
row.appendChild(fieldDateAcct.getComponent());
row.appendChild(labelDateAcct2.rightAlign());
row.appendChild(fieldDateAcct2.getComponent());
row.appendCellChild(labelDateAcct.rightAlign());
fieldDateAcct.getComponent().setHflex("true");
row.appendCellChild(fieldDateAcct.getComponent(), 2);
row.appendCellChild(labelDateAcct2.rightAlign());
fieldDateAcct2.getComponent().setHflex("true");
row.appendCellChild(fieldDateAcct2.getComponent(), 2);
row = rows.newRow();
row.appendChild(bRefresh);
@ -212,12 +219,22 @@ implements IFormController, EventListener<Event>, WTableModelListener, ValueChan
mainLayout.appendChild(south);
south.appendChild(commandPanel);
commandPanel.appendChild(commandLayout);
commandPanel.appendChild(bZoom);
commandPanel.appendChild(differenceLabel);
commandPanel.appendChild(differenceField);
commandPanel.appendChild(bGenerate);
commandPanel.appendChild(bReset);
commandPanel.appendChild(bCancel);
commandLayout.setWidth("90%");
rows = commandLayout.newRows();
row = rows.newRow();
row.appendCellChild(bZoom, 2);
bZoom.setHflex("true");
bZoom.setWidth("100%");
row.appendCellChild(differenceLabel.rightAlign());
differenceLabel.setHflex("true");
row.appendCellChild(differenceField, 2);
differenceField.setHflex("true");
row.appendCellChild(bGenerate, 2);
bGenerate.setHflex("true");
row.appendCellChild(bReset, 2);
bReset.setHflex("true");
row.appendCellChild(bCancel);
bCancel.setHflex("true");
}
/**