diff options
author | jeff <jeff> | 2008-09-30 21:05:14 +0000 |
---|---|---|
committer | jeff <jeff> | 2008-09-30 21:05:14 +0000 |
commit | 3a88582ed5708b0b0dd6c50c7227de8970b1344b (patch) | |
tree | f1b82445c4118550ec352c60cc625444cc68263f /httemplate/search/report_newtax.html | |
parent | fdab21bcd110c98808614f704d29638ecc2fd2aa (diff) |
simple reporting for new tax system
Diffstat (limited to 'httemplate/search/report_newtax.html')
-rwxr-xr-x | httemplate/search/report_newtax.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/httemplate/search/report_newtax.html b/httemplate/search/report_newtax.html new file mode 100755 index 000000000..52f920289 --- /dev/null +++ b/httemplate/search/report_newtax.html @@ -0,0 +1,23 @@ +<% include('/elements/header.html', 'Tax Report' ) %> + +<FORM ACTION="report_newtax.cgi" METHOD="GET"> + +<TABLE> + + <% include( '/elements/tr-select-agent.html' ) %> + + <% include( '/elements/tr-input-beginning_ending.html' ) %> + +</TABLE> + +<BR><INPUT TYPE="submit" VALUE="Get Report"> + +</FORM> + +<% include('/elements/footer.html') %> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Financial reports'); + +</%init> |