X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fpayment_history%2Finvoice.html;h=3a84b9e0e1f5946dc3f64ac8387c017e391c3700;hb=0cb1b7d0916777dacdfd7c7f905e0bca03a5dfd9;hp=fe14d3e549d49f477165fa29ddcf0084bf15e362;hpb=170aa1e8078280e7c03a6ebfc67280de66fa1b9d;p=freeside.git diff --git a/httemplate/view/cust_main/payment_history/invoice.html b/httemplate/view/cust_main/payment_history/invoice.html index fe14d3e54..3a84b9e0e 100644 --- a/httemplate/view/cust_main/payment_history/invoice.html +++ b/httemplate/view/cust_main/payment_history/invoice.html @@ -1,44 +1,57 @@ -<% $link %><% $invoice %><% $link ? '' : '' %><% $delete %><% $events %> +<% $link %><% $invoice %><% $link ? '' : '' %><% "$email$void$under" %> <%init> my( $cust_bill, %opt ) = @_; -my $conf = new FS::Conf; +my $invoice = emt("Invoice #[_1] (Balance [_2])",$cust_bill->display_invnum,$cust_bill->owed); -my $curuser = $FS::CurrentUser::CurrentUser; - -my $invoice = mt("Invoice #[_1] (Balance [_2])",$cust_bill->display_invnum,$cust_bill->owed); -$invoice = '' . - mt("Open Invoice #[_1] (Balance [_2])",$cust_bill->display_invnum,$cust_bill->owed) . - '' -if ( $cust_bill->owed > 0 ); +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 = $curuser->access_right('View invoices') +my $link = $opt{'View invoices'} ? qq!! : ''; -my $delete = ''; -if ( $opt{'deleteinvoices'} && $curuser->access_right('Delete invoices') ) { - $delete = 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 $email = ($opt{'has_email_address'} && $opt{'Resend invoices'}) ? + q! (invnum. + q!','Email Invoice Receipt')" TITLE="Send email invoice">email)! + : ''; + 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!
( '.mt('View invoice events').' )'; + && ($opt{'Billing event reports'} || $opt{'View customer billing events'}) + ) +{ + $under .= + qq!
( !. + emt('View invoice events').' )'; } -# +$under = ''.$under.'' if length($under);