<% $link %><% $invoice %><% $link ? '' : '' %><% "$void$under" %> <%init> my( $cust_bill, %opt ) = @_; my $invoice = emt("Invoice #[_1] (Balance [_2])",$cust_bill->display_invnum,$cust_bill->owed); my $under = ''; if ( $cust_bill->owed > 0 ) { $invoice = '' . emt("Open Invoice #[_1] (Balance [_2])",$cust_bill->display_invnum,$cust_bill->owed) . ''; if ( $cust_bill->promised_date ) { $under .= '
'. emt('Payment promised on [_1]', time2str($opt{'date_format'}, $cust_bill->promised_date)); } } #if $cust_bill->owed my $invnum = $cust_bill->invnum; my $link = $opt{'View invoices'} ? qq!! : ''; my $void = ''; if ( $cust_bill->closed !~ /^Y/i && $opt{'Void invoices'} ) { $void = ' ('. include('/elements/popup_link.html', 'label' => emt('void'), 'action' => "${p}misc/void-cust_bill.html?;invnum=". $cust_bill->invnum, 'actionlabel' => emt('Void Invoice'), ). ')'; } my $events = ''; if ( $cust_bill->num_cust_event && ($opt{'Billing event reports'} || $opt{'View customer billing events'}) ) { $under .= qq!
( !. emt('View invoice events').' )'; } $under = ''.$under.'' if length($under);