X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fpayment_history%2Finvoice.html;h=ca59c15fd43a5d9fec8805cb39c47972d431840f;hb=5da68ff1a7c638e30cbafbc9b0749f1e82b333df;hp=3028f0f6943feb4fa0823b1281b37440d5a4a17d;hpb=ce1b61e7d65317a74f680afb4cb8d8306e14fa5f;p=freeside.git diff --git a/httemplate/view/cust_main/payment_history/invoice.html b/httemplate/view/cust_main/payment_history/invoice.html index 3028f0f69..ca59c15fd 100644 --- a/httemplate/view/cust_main/payment_history/invoice.html +++ b/httemplate/view/cust_main/payment_history/invoice.html @@ -1,12 +1,8 @@ -<% $link %><% $invoice %><% $link ? '' : '' %><% $delete %><% $under %> +<% $link %><% $invoice %><% $link ? '' : '' %><% "$email$void$under" %> <%init> my( $cust_bill, %opt ) = @_; -my $conf = new FS::Conf; - -my $curuser = $FS::CurrentUser::CurrentUser; - my $invoice = emt("Invoice #[_1] (Balance [_2])",$cust_bill->display_invnum,$cust_bill->owed); my $under = ''; @@ -22,25 +18,36 @@ if ( $cust_bill->owed > 0 ) { my $invnum = $cust_bill->invnum; -my $link = $curuser->access_right('View invoices') +my $link = $opt{'View invoices'} ? qq!! : ''; -my $delete = ''; -$delete = areyousure_link("${p}misc/delete-cust_bill.html?$invnum", - emt('Are you sure you want to delete this invoice?'), - emt('Delete this invoice from the database completely'), - emt('delete') - ) - if ( $opt{'deleteinvoices'} && $curuser->access_right('Delete invoices') ); +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.cgi?;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 invoice)! + : ''; my $events = ''; -#1.9 if ( $cust_bill->num_cust_event - && ( $curuser->access_right('Billing event reports') - || $curuser->access_right('View customer billing events') - ) - ) { + && ($opt{'Billing event reports'} || $opt{'View customer billing events'}) + ) +{ $under .= qq!
( !. emt('View invoice events').' )';