X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fpayment_history%2Finvoice.html;h=7c993d6dc30ae867b78a921cbadb15486d82c8dc;hb=929783d1045757abbe5c84ff2439547b0f8eca23;hp=058da5463113700d605cdfaf2a0b5c582dbd7c85;hpb=50b038e338455c5d20f48f99767767b70c515c31;p=freeside.git diff --git a/httemplate/view/cust_main/payment_history/invoice.html b/httemplate/view/cust_main/payment_history/invoice.html index 058da5463..7c993d6dc 100644 --- a/httemplate/view/cust_main/payment_history/invoice.html +++ b/httemplate/view/cust_main/payment_history/invoice.html @@ -3,10 +3,12 @@ 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 ) { +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) . ''; @@ -14,7 +16,9 @@ if ( $cust_bill->owed > 0 ) { $under .= '
'. emt('Payment promised on [_1]', time2str($opt{'date_format'}, $cust_bill->promised_date)); } -} #if $cust_bill->owed +} else { + $invoice = emt("Invoice #[_1] (Balance [_2])",$cust_bill->display_invnum,$cust_bill->owed); +} my $invnum = $cust_bill->invnum; @@ -35,12 +39,12 @@ if ( $cust_bill->closed !~ /^Y/i && $opt{'Void invoices'} ) { } my $email = ($opt{'has_email_address'} && $opt{'Resend invoices'}) ? - q! (invnum. - q!','Email Invoice Receipt')" TITLE="Send email receipt">email receipt)! + q!','Email Invoice Receipt')" TITLE="Send email invoice">email)! : ''; my $events = '';