diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-03-26 22:45:09 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-03-26 22:45:09 -0700 |
commit | 73a0010272b15b42c19a40f59fd09c74fca2af5c (patch) | |
tree | 804a76a826865d6e810140c81bc0f0323102a3f6 /httemplate/misc | |
parent | db27e4da24fa49d91215bd8ef7a05895fa58c0f6 (diff) |
freeside inc. web services for address normalizaion and printing, RT#33849
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/post_fsinc-invoice.cgi | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/httemplate/misc/post_fsinc-invoice.cgi b/httemplate/misc/post_fsinc-invoice.cgi new file mode 100644 index 000000000..94eaf667e --- /dev/null +++ b/httemplate/misc/post_fsinc-invoice.cgi @@ -0,0 +1,43 @@ +% my $title = $error ? 'Error printing and mailing invoice' : 'Invoice printed and mailed'; +<% include('/elements/header-popup.html', $title ) %> +<DIV STYLE="text-align: center;"> +<SPAN STYLE="color: red; font-weight: bold;"><% $error %></SPAN><BR> +<BUTTON TYPE="button" onClick="parent.cClick();">Close</BUTTON> +</DIV> +<% include('/elements/footer-popup.html') %> + +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Print and mail invoices'); + +my $invnum = $cgi->param('invnum'); + +my $template = $cgi->param('template'); +my $notice_name = $cgi->param('notice_name') if $cgi->param('notice_name'); +my $no_coupon = $cgi->param('no_coupon'); + +#XXX agent-virt +my $cust_bill = qsearchs('cust_bill',{'invnum'=>$invnum}) + or die "Unknown invnum\n"; + +my $mode; +if ( $cgi->param('mode') =~ /^(\d+)$/ ) { + $mode = $1; +} +$cust_bill->set('mode' => $mode) if $mode; + +#these methods die instead of return errors, so, handle that without a backtrace +local $@; +my $letter_id = + eval { $cust_bill->postal_mail_fsinc( 'template' => $template, + 'notice_name' => $notice_name, + 'no_coupon' => $no_coupon, + ); + }; +my $error = "$@"; + +$error ||= 'Unknown print and mail error: no letter ID returned' + unless $letter_id; + +</%init> |