From 73a0010272b15b42c19a40f59fd09c74fca2af5c Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Sat, 26 Mar 2016 22:45:09 -0700 Subject: freeside inc. web services for address normalizaion and printing, RT#33849 --- httemplate/misc/post_fsinc-invoice.cgi | 43 ++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 httemplate/misc/post_fsinc-invoice.cgi (limited to 'httemplate/misc') 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 ) %> +
+<% $error %>
+ +
+<% 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; + + -- cgit v1.2.1