summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_main/payment_history/invoice.html
blob: 39c67396e9c5c335fc09508f46770f0069855bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<% $link %><% $pre %>Invoice #<% $invnum %>
(Balance $ <% $cust_bill->owed %>)<% $post %><% $link ? '</A>' : '' %><% $events %>
<%init>

my( $cust_bill, %opt ) = @_;

my $curuser = $FS::CurrentUser::CurrentUser;

my($pre, $post) = ('', '');
if ( $cust_bill->owed > 0 ) {
  $pre = '<B><FONT SIZE="+1" COLOR="#FF0000">Open ';
  $post = '</FONT></B>';
}

my $invnum = $cust_bill->invnum;

my $link = $curuser->access_right('View invoices')
             ? qq!<A HREF="${p}view/cust_bill.cgi?$invnum">!
             : '';

my $events = '';
#1.9
if ( $cust_bill->num_cust_event
     && (    $curuser->access_right('Billing event reports')
          || $curuser->access_right('View customer billing events')
        )
   ) {
  $events =
    qq!<BR><FONT SIZE="-1"><A HREF="${p}search/cust_event.html?invnum=!.
    $cust_bill->invnum. '">(&nbsp;View invoice events&nbsp;)</A></FONT>';
}
#

</%init>