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