X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_bill.cgi;h=cf0c3190a66e61b4c51a4d57378d923c265139c4;hb=d9f0a98539cd8dd957ea9a4b5d77fbb739d43d2e;hp=24d67ddc62e30ce337e9038b119c6cde231e36a7;hpb=51984ac3d3da3006809c6866fdecd4ad83610731;p=freeside.git diff --git a/httemplate/view/cust_bill.cgi b/httemplate/view/cust_bill.cgi index 24d67ddc6..cf0c3190a 100755 --- a/httemplate/view/cust_bill.cgi +++ b/httemplate/view/cust_bill.cgi @@ -1,97 +1,228 @@ -<% -# -# $Id: cust_bill.cgi,v 1.1 2001-07-30 07:36:04 ivan Exp $ -# -# this is a quick & ugly hack which does little more than add some formatting to the ascii output from /dbin/print-invoice -# -# ivan@voicenet.com 96-dec-05 -# -# added navigation bar -# ivan@voicenet.com 97-jan-30 -# -# now uses Invoice.pm -# ivan@voicenet.com 97-jun-30 -# -# what to do if cust_bill search errors? -# ivan@voicenet.com 97-jul-7 -# -# s/FS::Search/FS::Record/; $cgisuidsetup($cgi); ivan@sisd.com 98-mar-14 -# -# Changes to allow page to work at a relative position in server -# bmccane@maxbaud.net 98-apr-3 -# -# also print 'printed' field ivan@sisd.com 98-jul-10 -# -# $Log: cust_bill.cgi,v $ -# Revision 1.1 2001-07-30 07:36:04 ivan -# templates!!! -# -# Revision 1.8 1999/02/28 00:03:58 ivan -# removed misleading comments -# -# Revision 1.7 1999/01/25 12:26:03 ivan -# yet more mod_perl stuff -# -# Revision 1.6 1999/01/19 05:14:18 ivan -# for mod_perl: no more top-level my() variables; use vars instead -# also the last s/create/new/; -# -# Revision 1.5 1999/01/18 09:41:42 ivan -# all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl -# (good idea anyway) -# -# Revision 1.4 1998/12/30 23:03:33 ivan -# bugfixes; fields isn't exported by derived classes -# -# Revision 1.3 1998/12/23 03:07:49 ivan -# $cgi->keywords instead of $cgi->query_string -# -# Revision 1.2 1998/12/17 09:57:20 ivan -# s/CGI::(Base|Request)/CGI.pm/; -# - -use strict; -use vars qw ( $cgi $query $invnum $cust_bill $custnum $printed $p ); -use IO::File; -use CGI; -use CGI::Carp qw(fatalsToBrowser); -use FS::UID qw(cgisuidsetup); -use FS::CGI qw(header popurl menubar); -use FS::Record qw(qsearchs); -use FS::cust_bill; - -$cgi = new CGI; -&cgisuidsetup($cgi); - -#untaint invnum -($query) = $cgi->keywords; -$query =~ /^(\d+)$/; -$invnum = $1; - -$cust_bill = qsearchs('cust_bill',{'invnum'=>$invnum}); +<& /elements/header.html, mt('Invoice View'), menubar( + emt("View this customer (#[_1])",$display_custnum) => "${p}view/cust_main.cgi?$custnum", +) &> + + + +% if ( !$cust_bill->closed ) { # otherwise allow no changes +% my $can_delete = $conf->exists('deleteinvoices') +% && $curuser->access_right('Delete invoices'); +% my $can_void = $curuser->access_right('Void invoices'); +% if ( $can_void ) { + <& /elements/popup_link.html, + 'label' => emt('Void this invoice'), + 'actionlabel' => emt('Void this invoice'), + 'action' => $p.'misc/void-cust_bill.html?invnum='.$invnum, + &> +% } +% if ( $can_void and $can_delete ) { +  |  +% } +% if ( $can_delete ) { + \ + <% emt('Delete this invoice') |h %> +% } +% if ( $can_void or $can_delete ) { +

+% } +% } + +% if ( $cust_bill->owed > 0 +% && $curuser->access_right(['Post payment', 'Post check payment', 'Post cash payment']) +% && ! $conf->exists('pkg-balances') +% ) +% { +% my $s = 0; + + <% mt('Post') |h %> + +% if ( $curuser->access_right(['Post payment', 'Post check payment']) ) { + <% $s++ ? ' | ' : '' %> + <% mt('check') |h %> +% } + +% if ( $curuser->access_right(['Post payment', 'Post cash payment']) ) { + <% $s++ ? ' | ' : '' %> + <% mt('cash') |h %> +% } + +%# % if ( $payby{'WEST'} && $curuser->access_right(['Post payment']) ) { +%# <% $s++ ? ' | ' : '' %> +%# <% mt('Western Union') |h %> +%# % } +%# +%# % if ( $payby{'MCRD'} && $curuser->access_right(['Post payment']) ) { +%# <% $s++ ? ' | ' : '' %> +%# <% mt('manual credit card') |h %> +%# % } +%# +%# % if ( $payby{'MCHK'} && $curuser->access_right(['Post payment']) ) { +%# <% $s++ ? ' | ' : '' %> +%# <% mt('manual electronic check') |h %> +%# % } + + <% mt('payment against this invoice') |h %>

+ +% } + +% if ( $conf->exists('cust_bill-enable_promised_date') ) { +% my $onclick = include('/elements/popup_link_onclick.html', +% 'action' => $p.'misc/cust_bill-promised_date.html?'.$invnum, +% 'actionlabel' => emt('Set promised payment date'), +% 'width' => 320, +% 'height' => 240, +% ); +% $onclick = ''; +% if ( $cust_bill->promised_date ) { +% my $date_format = $conf->config('date_format') || '%b %o, %Y'; + <% mt('Payment promised by [_1]', + time2str($date_format, $cust_bill->promised_date) ) %> + ( <% $onclick %><% mt('change') |h %> ) +

+% } +% elsif ( $cust_bill->owed > 0 ) { + <% $onclick %><% mt('Set promised payment date' ) |h %> +

+% } +% } + +% if ( $curuser->access_right('Resend invoices') ) { + + <% mt('Re-print this invoice') |h %> + +% if ( grep { $_ ne 'POST' } $cust_bill->cust_main->invoicing_list ) { + | <% mt('Re-email this invoice') |h %> +% } + +% if ( $conf->exists('hylafax') && length($cust_bill->cust_main->fax) ) { + | <% mt('Re-fax this invoice') |h %> +% } + +

+ +% } + +% my $br = 0; +% if ( $conf->exists('invoice_latex') ) { + + <% mt('View typeset invoice PDF') |h %> + +% $br++; +% } + +% if ( $cust_bill->num_cust_event ) { +<% $br ? '|' : '' %> +<% mt('View invoice events') |h %> +% $br++; +% } + +% my @modes = grep {! $_->disabled} +% $cust_bill->cust_main->agent->invoice_modes; +% if ( @modes || $include_statement_template ) { +<% $br ? '|' : '' %> +<% mt('View as:') %> +
+ +<& /elements/select-table.html, + table => 'invoice_mode', + field => 'mode', + curr_value => scalar($cgi->param('mode')), + records => \@modes, + name_col => 'modename', + onchange => 'change_invoice_mode', + empty_label => '(default)', + $include_statement_template ? ( + 'post_options' => [ 'statement', '(statement)' ] + ) : () +&> + +% } + +

+ +% if ( $conf->exists('invoice_html') && ! $cgi->param('plaintext') ) { + <% join('', $cust_bill->print_html(\%opt) ) %> +% } else { +
<% join('', $cust_bill->print_text(\%opt) ) |h %>
+% } + +<& /elements/footer.html &> +<%init> + +my $curuser = $FS::CurrentUser::CurrentUser; + +die "access denied" + unless $curuser->access_right('View invoices'); + +my $conf = FS::Conf->new; + +my( $invnum, $mode, $template, $notice_name, $no_coupon ); +my($query) = $cgi->keywords; +if ( $query =~ /^((.+)-)?(\d+)$/ ) { + $template = $2; + $invnum = $3; + $notice_name = 'Invoice'; +} else { + $invnum = $cgi->param('invnum'); + $template = $cgi->param('template'); + $notice_name = $cgi->param('notice_name'); + $mode = $cgi->param('mode'); +} + +if ($mode eq 'statement') { + $mode = undef; + $template = 'statement'; + $notice_name = 'Statement'; + $no_coupon = 1; +} + +my $include_statement_template = $conf->config('payment_receipt_statement_mode') ? 0 : 1; + +my %opt = ( + 'unsquelch_cdr' => $conf->exists('voip-cdr_email'), + 'template' => $template, + 'notice_name' => $notice_name, +); + +$opt{'barcode_img'} = 1 if $conf->exists('invoice-barcode'); + +my $cust_bill = qsearchs({ + 'select' => 'cust_bill.*', + 'table' => 'cust_bill', + 'addl_from' => 'LEFT JOIN cust_main USING ( custnum )', + 'hashref' => { 'invnum' => $invnum }, + 'extra_sql' => ' AND '. $curuser->agentnums_sql, +}); +# if we're asked for a voided invnum, redirect appropriately +if (!$cust_bill and FS::cust_bill_void->row_exists("invnum = $invnum") ) { + $m->clear_buffer; + my $url = $p.'view/cust_bill_void.html?'.$cgi->query_string; + $m->print( $cgi->redirect($url) ); + $m->abort; +} die "Invoice #$invnum not found!" unless $cust_bill; -$custnum = $cust_bill->getfield('custnum'); - -$printed = $cust_bill->printed; - -$p = popurl(2); -print $cgi->header( '-expires' => 'now' ), header('Invoice View', menubar( - "Main Menu" => $p, - "View this customer (#$custnum)" => "${p}view/cust_main.cgi?$custnum", -)), <Enter payments (check/cash) against this invoice -
Reprint this invoice -

(Printed $printed times) -
-END
-
-print $cust_bill->print_text;
-
-	#formatting
-	print <
-  
-
-END
-
-%>
+
+$cust_bill->set('mode' => $mode);
+
+my $custnum = $cust_bill->custnum;
+my $display_custnum = $cust_bill->cust_main->display_custnum;
+
+my $link = "invnum=$invnum";
+$link .= ';mode=' . $mode if $mode;
+$link .= ';template='. uri_escape($template) if $template;
+$link .= ';notice_name='. $notice_name if $notice_name;
+$link .= ';no_coupon=1' if $no_coupon;
+
+