From: Ivan Kohler Date: Sun, 27 Mar 2016 05:45:09 +0000 (-0700) Subject: freeside inc. web services for address normalizaion and printing, RT#33849 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=73a0010272b15b42c19a40f59fd09c74fca2af5c freeside inc. web services for address normalizaion and printing, RT#33849 --- diff --git a/FS/FS/AccessRight.pm b/FS/FS/AccessRight.pm index a24d736ee..7004d7015 100644 --- a/FS/FS/AccessRight.pm +++ b/FS/FS/AccessRight.pm @@ -183,6 +183,7 @@ tie my %rights, 'Tie::IxHash', 'Customer invoice / financial info rights' => [ 'View invoices', 'Resend invoices', #NEWNEW + { rightname=>'Print and mail invoices', desc=>"Print and mail via Freeside's web service", }, ##NEWER than NEWNEWNEW 'Void invoices', 'Unvoid invoices', 'View customer tax exemptions', #yow diff --git a/FS/FS/access_right.pm b/FS/FS/access_right.pm index 57f67ded3..59defb72a 100644 --- a/FS/FS/access_right.pm +++ b/FS/FS/access_right.pm @@ -254,6 +254,7 @@ sub _upgrade_data { # class method 'Add on-the-fly void credit reason' => 'Add on-the-fly void reason', '_ALL' => 'Employee preference telephony integration', 'Edit customer package dates' => 'Change package start date', #4.x + 'Resend invoices' => 'Print and mail invoices', ); # foreach my $old_acl ( keys %onetime ) { 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; + + diff --git a/httemplate/view/cust_bill.cgi b/httemplate/view/cust_bill.cgi index cf0c3190a..c95e01dc4 100755 --- a/httemplate/view/cust_bill.cgi +++ b/httemplate/view/cust_bill.cgi @@ -95,8 +95,18 @@ function areyousure(href, message) { % } % if ( $curuser->access_right('Resend invoices') ) { + <% mt('Print this invoice') |h %> +% } + +% if ( $curuser->access_right('Print and mail invoices') ) { + | <& /elements/popup_link.html, + 'action' => $p."misc/post_fsinc-invoice.cgi?$link", + 'label' => 'Print and mail this invoice online', + 'actionlabel' => 'Invoice printing and mailing', + &> +% } - <% mt('Re-print this invoice') |h %> +% if ( $curuser->access_right('Resend invoices') ) { % if ( grep { $_ ne 'POST' } $cust_bill->cust_main->invoicing_list ) { | <% mt('Re-email this invoice') |h %> @@ -106,8 +116,11 @@ function areyousure(href, message) { | <% mt('Re-fax this invoice') |h %> % } -

+% } +% if ( $curuser->access_right('Resend invoices') +% || $curuser->access_right('Print and mail invoices') ) { +

% } % my $br = 0;