X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fpayment_history%2Finvoice.html;h=7c993d6dc30ae867b78a921cbadb15486d82c8dc;hb=11bbf29de447fe39e9d7155fe280a0df70fa8c3c;hp=ca59c15fd43a5d9fec8805cb39c47972d431840f;hpb=5da68ff1a7c638e30cbafbc9b0749f1e82b333df;p=freeside.git diff --git a/httemplate/view/cust_main/payment_history/invoice.html b/httemplate/view/cust_main/payment_history/invoice.html index ca59c15fd..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; @@ -27,7 +31,7 @@ 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=". + 'action' => "${p}misc/void-cust_bill.html?;invnum=". $cust_bill->invnum, 'actionlabel' => emt('Void Invoice'), ). @@ -40,7 +44,7 @@ my $email = ($opt{'has_email_address'} && $opt{'Resend invoices'}) ? q! to customer?','!. "${p}misc/send-invoice.cgi?method=email;notice_name=Invoice;popup=1;invnum=". $cust_bill->invnum. - q!','Email Invoice Receipt')" TITLE="Send email invoice">email invoice)! + q!','Email Invoice Receipt')" TITLE="Send email invoice">email)! : ''; my $events = '';