X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fmisc%2Fsend-invoice.cgi;h=dd9c3ade251d32b77f234778ee750b89febaacc1;hb=ac03ad840f625e48ed939ff93a28a12a9a78b1a5;hp=32dfe276d685fb75f1e55b05f3a01b538d3a33ca;hpb=06187016fd78ba41fb82846b9e8d461405f316b6;p=freeside.git diff --git a/httemplate/misc/send-invoice.cgi b/httemplate/misc/send-invoice.cgi index 32dfe276d..dd9c3ade2 100644 --- a/httemplate/misc/send-invoice.cgi +++ b/httemplate/misc/send-invoice.cgi @@ -1,4 +1,8 @@ +% if ( $error ) { +% errorpage($error); +% } else { <% $cgi->redirect("${p}view/cust_main.cgi?$custnum") %> +% } <%once> my %method = ( map { $_=>1 } qw( email print fax_invoice ) ); @@ -13,6 +17,10 @@ my $invnum = $cgi->param('invnum'); my $template = $cgi->param('template'); my $notice_name = $cgi->param('notice_name') if $cgi->param('notice_name'); my $method = $cgi->param('method'); +my $mode; +if ( $cgi->param('mode') =~ /^(\d+)$/ ) { + $mode = $1; +} $method .= '_invoice' if $method eq 'fax'; #! @@ -21,9 +29,14 @@ die "unknown method $method" unless $method{$method}; my $cust_bill = qsearchs('cust_bill',{'invnum'=>$invnum}); die "Can't find invoice!\n" unless $cust_bill; -$cust_bill->$method({ 'template' => $template, - 'notice_name' => $notice_name, - }); +$cust_bill->set('mode' => $mode) if $mode; + +#these methods die instead of return errors, so, handle that without a backtrace +eval { $cust_bill->$method({ 'template' => $template, + 'notice_name' => $notice_name, + }); + }; +my $error = $@; my $custnum = $cust_bill->getfield('custnum');