IDEMPIERE-5777 Improve extensibility of WPaySelect (#1903)
This commit is contained in:
parent
3641e398ca
commit
827a0ba659
|
@ -103,7 +103,7 @@ public class WPaySelect extends PaySelect
|
||||||
private Panel parameterPanel = new Panel();
|
private Panel parameterPanel = new Panel();
|
||||||
private Label labelBankAccount = new Label();
|
private Label labelBankAccount = new Label();
|
||||||
/** Bank account parameter */
|
/** Bank account parameter */
|
||||||
private Listbox fieldBankAccount = ListboxFactory.newDropdownListbox();
|
protected Listbox fieldBankAccount = ListboxFactory.newDropdownListbox();
|
||||||
/** Layout of {@link #parameterPanel} */
|
/** Layout of {@link #parameterPanel} */
|
||||||
private Grid parameterLayout = GridFactory.newGridLayout();
|
private Grid parameterLayout = GridFactory.newGridLayout();
|
||||||
/** Label of {@link #labelBalance} */
|
/** Label of {@link #labelBalance} */
|
||||||
|
@ -112,20 +112,20 @@ public class WPaySelect extends PaySelect
|
||||||
private Label labelCurrency = new Label();
|
private Label labelCurrency = new Label();
|
||||||
/** Current bank account balance */
|
/** Current bank account balance */
|
||||||
private Label labelBalance = new Label();
|
private Label labelBalance = new Label();
|
||||||
private Checkbox onlyDue = new Checkbox();
|
protected Checkbox onlyDue = new Checkbox();
|
||||||
private Checkbox onlyPositiveBalance = new Checkbox();
|
protected Checkbox onlyPositiveBalance = new Checkbox();
|
||||||
private Label labelBPartner = new Label();
|
private Label labelBPartner = new Label();
|
||||||
private Listbox fieldBPartner = ListboxFactory.newDropdownListbox();
|
protected Listbox fieldBPartner = ListboxFactory.newDropdownListbox();
|
||||||
private Label labelPayDate = new Label();
|
private Label labelPayDate = new Label();
|
||||||
/** C_PaySelection.PayDate */
|
/** C_PaySelection.PayDate */
|
||||||
private WDateEditor fieldPayDate = new WDateEditor();
|
protected WDateEditor fieldPayDate = new WDateEditor();
|
||||||
private Label labelPaymentRule = new Label();
|
private Label labelPaymentRule = new Label();
|
||||||
private Listbox fieldPaymentRule = ListboxFactory.newDropdownListbox();
|
protected Listbox fieldPaymentRule = ListboxFactory.newDropdownListbox();
|
||||||
private Label labelDtype = new Label();
|
private Label labelDtype = new Label();
|
||||||
/** Document Type */
|
/** Document Type */
|
||||||
private Listbox fieldDtype = ListboxFactory.newDropdownListbox();
|
protected Listbox fieldDtype = ListboxFactory.newDropdownListbox();
|
||||||
/** MPaySelection.COLUMNNAME_IsOnePaymentPerInvoice */
|
/** MPaySelection.COLUMNNAME_IsOnePaymentPerInvoice */
|
||||||
private Checkbox chkOnePaymentPerInv = new Checkbox();
|
protected Checkbox chkOnePaymentPerInv = new Checkbox();
|
||||||
|
|
||||||
/** Center of {@link #mainLayout}. Open document list. */
|
/** Center of {@link #mainLayout}. Open document list. */
|
||||||
private WListbox miniTable = ListboxFactory.newDataTable();
|
private WListbox miniTable = ListboxFactory.newDataTable();
|
||||||
|
|
Loading…
Reference in New Issue