diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-07-08 19:15:33 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-07-08 19:15:33 -0500 |
commit | 4f5619288413a185e9933088d9dd8c5afbc55dfa (patch) | |
tree | d324d8f88926f88abe2001b23d9639660017deb2 /httemplate/misc/email-customer-statement.html | |
parent | 04969741a587fa292c830b83b077c4c7522621b9 (diff) |
RT#34078: Payment History Report / Statement [Fixes for acl and text preview]
Diffstat (limited to 'httemplate/misc/email-customer-statement.html')
-rw-r--r-- | httemplate/misc/email-customer-statement.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/httemplate/misc/email-customer-statement.html b/httemplate/misc/email-customer-statement.html index 65660f1be..92ce1c4d1 100644 --- a/httemplate/misc/email-customer-statement.html +++ b/httemplate/misc/email-customer-statement.html @@ -5,13 +5,17 @@ 'no_search_fields' => [ 'start_date', 'end_date' ], 'alternate_form' => $alternate_form, 'post_search_hook' => $post_search_hook, + 'acl' => $acl, + 'process_url' => 'process/email-customer-statement.html', ) %> <%init> +my $acl = 'Resend invoices'; + die "access denied" - unless $FS::CurrentUser::CurrentUser->access_right('View invoices'); + unless $FS::CurrentUser::CurrentUser->access_right($acl); my $alternate_form = sub { # this could maaaybe be a separate element, for cleanliness |