diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2018-08-08 19:35:34 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2018-08-08 19:35:34 -0400 |
| commit | a3c654c1ae9ea07726aba9899a9b2e1d4dbd12c6 (patch) | |
| tree | b429165bf91d1193b064a899eb22118bf907273c /httemplate/elements/tr-select-invoice.html | |
| parent | 038b31793f290f65222ae748df05e703c6ae035d (diff) | |
RT# 34134 - updated select invoice to actually pay the invoice being selected not the oldest one.
Diffstat (limited to 'httemplate/elements/tr-select-invoice.html')
| -rw-r--r-- | httemplate/elements/tr-select-invoice.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/httemplate/elements/tr-select-invoice.html b/httemplate/elements/tr-select-invoice.html index 434042c9b..d35813fc5 100644 --- a/httemplate/elements/tr-select-invoice.html +++ b/httemplate/elements/tr-select-invoice.html @@ -26,10 +26,14 @@ Example: <OPTION VALUE="select">Select an invoice to pay</OPTION> % foreach my $record (@invoices) { % my $read_date = time2str("%b %o, %Y", $record->_date); - <OPTION VALUE="<% $record->charged %>"><% $record->invnum %> (<% $read_date %>) - <% $record->charged %></OPTION> +% $hidden .= '<INPUT TYPE="hidden" ID="inv'.$record->invnum.'" NAME="inv'.$record->invnum.'" VALUE="'.$record->owed.'">'; + <OPTION VALUE="<% $record->invnum %>"><% $record->invnum %> (<% $read_date %>) - <% $record->owed %></OPTION> % } - </SELECT> + </SELECT> + + <% $hidden %> + </TD> </TR> @@ -37,6 +41,7 @@ Example: my %opt = @_; my $status = $opt{'status'} ? $opt{'status'} : 'all'; +my $hidden; my @invoices; if ($status eq "all") { @invoices = $opt{'cust_main'}->cust_bill; } |
