diff options
Diffstat (limited to 'httemplate/edit/cust_pay_refund.cgi')
| -rwxr-xr-x | httemplate/edit/cust_pay_refund.cgi | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/httemplate/edit/cust_pay_refund.cgi b/httemplate/edit/cust_pay_refund.cgi new file mode 100755 index 000000000..f82fe36fe --- /dev/null +++ b/httemplate/edit/cust_pay_refund.cgi @@ -0,0 +1,14 @@ +<% include('elements/ApplicationCommon.html', +     'form_action' => 'process/cust_pay_refund.cgi', +     'src_table'   => 'cust_pay', +     'src_thing'   => 'payment', +     'dst_table'   => 'cust_refund', +     'dst_thing'   => 'refund', +   ) +%> +<%init> + +die "access denied" +  unless $FS::CurrentUser::CurrentUser->access_right('Apply payment'); + +</%init> | 
