diff options
author | ivan <ivan> | 2007-02-04 01:47:51 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-02-04 01:47:51 +0000 |
commit | 5d9a5e54a74950b0e62264abcd53e77607f04b48 (patch) | |
tree | 77765f619f02cbf035901732f4d046e5163f572d /httemplate/view | |
parent | d30b47bd6c6b3c93dab69ec054cafe59358f0b82 (diff) |
add link to some batched payment info to customer view
Diffstat (limited to 'httemplate/view')
-rw-r--r-- | httemplate/view/cust_main/payment_history.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/httemplate/view/cust_main/payment_history.html b/httemplate/view/cust_main/payment_history.html index 43c55e8c9..b2d98cc55 100644 --- a/httemplate/view/cust_main/payment_history.html +++ b/httemplate/view/cust_main/payment_history.html @@ -49,6 +49,17 @@ <BR> % } +% if ( $conf->exists('batch-enable') +% #&& $curuser->access_right('View customer tax exemptions') +% ) { + View batched payments: +% foreach my $status (qw( Queued In-transit Complete All )) { + <A HREF="<% $p %>search/cust_pay_batch.cgi?status=<% $status{$status} %>;custnum=<% $custnum %>"><% $status %></A> + <% $status ne 'All' ? '|' : '' %> +% } + <BR> +% } + %#get payment history %my @history = (); % @@ -584,4 +595,11 @@ my @payby = grep /\w/, $conf->config('payby'); unless @payby; my %payby = map { $_=>1 } @payby; +my %status = ( + 'Queued' => 'O', #Open + 'In-transit' => 'I', + 'Complete' => 'R', #Resolved + 'All' => '', +); + </%init> |