<% $link %><% $pre %>Invoice #<% $cust_bill->display_invnum %> (Balance $ <% $cust_bill->owed %>)<% $post %><% $link ? '' : '' %><% $delete %><% $events %> <%init> my( $cust_bill, %opt ) = @_; my $conf = new FS::Conf; my $curuser = $FS::CurrentUser::CurrentUser; my($pre, $post) = ('', ''); if ( $cust_bill->owed > 0 ) { $pre = 'Open '; $post = ''; } my $invnum = $cust_bill->invnum; my $link = $curuser->access_right('View invoices') ? qq!! : ''; my $delete = ''; if ( $opt{'deleteinvoices'} && $curuser->access_right('Delete invoices') ) { $delete = qq! (delete)!; } 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!
( View invoice events )'; } #