X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fview%2Fcust_bill.cgi;h=9282b70890dbd768c0dff4e1df46229e08deed9e;hp=5dd8a8d71ecdf5a0857f33210256460f71e97294;hb=c28a4c33a88dfa354436f81a2e213638088adcf1;hpb=f96998102b9bdf8e730b6b55a0aa2b62afffb545 diff --git a/httemplate/view/cust_bill.cgi b/httemplate/view/cust_bill.cgi index 5dd8a8d71..9282b7089 100755 --- a/httemplate/view/cust_bill.cgi +++ b/httemplate/view/cust_bill.cgi @@ -1,4 +1,3 @@ - <% #untaint invnum @@ -15,76 +14,98 @@ my $custnum = $cust_bill->getfield('custnum'); #my $printed = $cust_bill->printed; -print header('Invoice View', menubar( +my $link = $templatename ? "$templatename-$invnum" : $invnum; + +%> +<%= header('Invoice View', menubar( "Main Menu" => $p, "View this customer (#$custnum)" => "${p}view/cust_main.cgi?$custnum", -)); - -print qq!Enter payments (check/cash) against this invoice | ! - if $cust_bill->owed > 0; - -print qq!Reprint this invoice!; -if ( grep { $_ ne 'POST' } $cust_bill->cust_main->invoicing_list ) { - print qq! | !. - qq!Re-email this invoice!; -} - -print qq! | Refax this invoice! - if ($conf->exists('hylafax')); - -print '

'; - -if ( $conf->exists('invoice_latex') ) { - my $link = "${p}view/cust_bill-pdf.cgi?"; - $link .= "$templatename-" if $templatename; - $link .= "$invnum.pdf"; - print menubar( - 'View typeset invoice' => $link, - ), '

'; -} - -#false laziness with search/cust_bill_event.cgi - -unless ( $templatename ) { - print table(). 'EventDateStatus'; - foreach my $cust_bill_event ( - sort { $a->_date <=> $b->_date } $cust_bill->cust_bill_event - ) { +)) %> + +<% if ( $cust_bill->owed > 0 ) { %> + Enter payments (check/cash) against this invoice | +<% } %> + +Reprint this invoice + +<% if ( grep { $_ ne 'POST' } $cust_bill->cust_main->invoicing_list ) { %> + | Re-email + this invoice +<% } %> + +<% if ( $conf->exists('hylafax') && length($cust_bill->cust_main->fax) ) { %> + | Re-fax + this invoice +<% } %> + +

+ +<% if ( $conf->exists('invoice_latex') ) { %> + View typeset invoice +

+<% } %> + +<% #false laziness with search/cust_bill_event.cgi + unless ( $templatename ) { %> + + <%= table() %> + + Event + Date + Status + + + <% foreach my $cust_bill_event ( + sort { $a->_date <=> $b->_date } $cust_bill->cust_bill_event + ) { + my $status = $cust_bill_event->status; $status .= ': '. encode_entities($cust_bill_event->statustext) if $cust_bill_event->statustext; my $part_bill_event = $cust_bill_event->part_bill_event; - print ''. $part_bill_event->event; + %> + + <%= $part_bill_event->event %> - if ( - $part_bill_event->plan eq 'send_alternate' - && $part_bill_event->plandata =~ /^templatename (.*)$/m - ) { - my $templatename = $1; - print qq! ( !. - 'view | '. - qq!!. - 'view typeset )'; - } + <% if ( + $part_bill_event->plan eq 'send_alternate' + && $part_bill_event->plandata =~ /^(agent_)?templatename (.*)$/m + ) { + my $alt_templatename = $2; + my $alt_link = "$templatename-$invnum"; + %> + ( view + | view + typeset + | re-print + <% if ( grep { $_ ne 'POST' } + $cust_bill->cust_main->invoicing_list ) { %> + | re-email + <% } %> + + <% if ( $conf->exists('hylafax') + && length($cust_bill->cust_main->fax) ) { %> + | re-fax + <% } %> + + ) + <% } %> - print ''. - time2str("%a %b %e %T %Y", $cust_bill_event->_date). ''. - $status. ''; - } - print '
'; -} - -if ( $conf->exists('invoice_html') ) { - print $cust_bill->print_html('', $templatename); -} else { - print '
', $cust_bill->print_text('', $templatename), '
'; -} - - #formatting - print < - - -END + + <%= time2str("%a %b %e %T %Y", $cust_bill_event->_date) %> + <%= $status %> + + <% } %> -%> + +
+ +<% } %> + +<% if ( $conf->exists('invoice_html') ) { %> + <%= $cust_bill->print_html('', $templatename) %> +<% } else { %> +
<%= $cust_bill->print_text('', $templatename) %>
+<% } %> + +