X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fpayment_history%2Finvoice.html;h=7c993d6dc30ae867b78a921cbadb15486d82c8dc;hp=29389ef77a304d7eff54f3c246ccab167c00fa18;hb=5b2872a065cd65c823e9056b9153e4548ee7c201;hpb=d21d7864c1f1bc4fed05a01c0b037628a4ca5b99 diff --git a/httemplate/view/cust_main/payment_history/invoice.html b/httemplate/view/cust_main/payment_history/invoice.html index 29389ef77..7c993d6dc 100644 --- a/httemplate/view/cust_main/payment_history/invoice.html +++ b/httemplate/view/cust_main/payment_history/invoice.html @@ -1,43 +1,61 @@ -<% $link %><% $invoice %><% $link ? '' : '' %><% $delete %><% $events %> +<% $link %><% $invoice %><% $link ? '' : '' %><% "$email$void$under" %> <%init> my( $cust_bill, %opt ) = @_; -my $conf = new FS::Conf; - -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 = ''; +my $invoice; +if ( $cust_bill->pending ) { + $invoice = '' . + emt("Pending Invoice #[_1] (Charges of [_2])", $cust_bill->display_invnum, $cust_bill->charged); +} elsif ( $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)); + } +} else { + $invoice = emt("Invoice #[_1] (Balance [_2])",$cust_bill->display_invnum,$cust_bill->owed); +} 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", - mt('Are you sure you want to delete this invoice?'), - mt('Delete this invoice from the database completely'), - mt('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.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);