diff options
Diffstat (limited to 'UI/payments/payments_filter.html')
-rw-r--r-- | UI/payments/payments_filter.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/UI/payments/payments_filter.html b/UI/payments/payments_filter.html index 9f50a613..6ae341dd 100644 --- a/UI/payments/payments_filter.html +++ b/UI/payments/payments_filter.html @@ -2,6 +2,7 @@ include_stylesheet = [ 'css/global.css' 'UI/payments/payments.css' + stylesheet ] titlebar = text('Selection') ?> @@ -104,6 +105,22 @@ </select> </div> </div> +<div class="listtop"> + <!-- <?lsmb INCLUDE select element_data = { + name = "cash_accno" + default_values = [cash_accno] + options = cash_accounts + value_attr = "accno" + text_attr = "text" + label = text('Pay From:') # ' + } ?> --> + <select name="cash_accno" id="cash_account"> + <?lsmb FOREACH a = cash_accounts ?> + <option value="<?lsmb a.accno ?>"> + <?lsmb a.accno ?>--<?lsmb a.description ?> + </option> + <?lsmb END # foreach a ?> + </select> <div class = "input"> <?lsmb INCLUDE input element_data = { type = "text" |