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/view | |
parent | db27e4da24fa49d91215bd8ef7a05895fa58c0f6 (diff) |
freeside inc. web services for address normalizaion and printing, RT#33849
Diffstat (limited to 'httemplate/view')
-rwxr-xr-x | httemplate/view/cust_bill.cgi | 17 |
1 files changed, 15 insertions, 2 deletions
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') ) { + <A HREF="<% $p %>misc/send-invoice.cgi?method=print;<% $link %>"><% mt('Print this invoice') |h %></A> +% } + +% 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', + &> +% } - <A HREF="<% $p %>misc/send-invoice.cgi?method=print;<% $link %>"><% mt('Re-print this invoice') |h %></A> +% if ( $curuser->access_right('Resend invoices') ) { % if ( grep { $_ ne 'POST' } $cust_bill->cust_main->invoicing_list ) { | <A HREF="<% $p %>misc/send-invoice.cgi?method=email;<% $link %>"><% mt('Re-email this invoice') |h %></A> @@ -106,8 +116,11 @@ function areyousure(href, message) { | <A HREF="<% $p %>misc/send-invoice.cgi?method=fax;<% $link %>"><% mt('Re-fax this invoice') |h %></A> % } - <BR><BR> +% } +% if ( $curuser->access_right('Resend invoices') +% || $curuser->access_right('Print and mail invoices') ) { + <BR><BR> % } % my $br = 0; |