diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-07-31 03:36:14 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-07-31 03:36:14 -0700 |
commit | f264598260908d2442fe1aed2ce3784ce51254e6 (patch) | |
tree | bd0f6efc5b41c49084a9d193a59c3e4a7672ba81 /httemplate/search/report_vend_bill.html | |
parent | 449e3c3b4fe9b4f55950951c0ecc7aaf954e2212 (diff) |
simple A/P
Diffstat (limited to 'httemplate/search/report_vend_bill.html')
-rw-r--r-- | httemplate/search/report_vend_bill.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/httemplate/search/report_vend_bill.html b/httemplate/search/report_vend_bill.html new file mode 100644 index 000000000..aec1bba8f --- /dev/null +++ b/httemplate/search/report_vend_bill.html @@ -0,0 +1,34 @@ +<& /elements/header.html, mt('Payables Report') &> + +<FORM ACTION="vend_bill.html" METHOD="GET"> + + <TABLE BGCOLOR="#cccccc" CELLSPACING=0> + + <TR> + <TD ALIGN="right" VALIGN="center"><% mt('Date') |h %></TD> + <TD> + <TABLE> + <& /elements/tr-input-beginning_ending.html, + prefix => '_date', + layout => 'horiz', + &> + </TABLE> + </TD> + </TR> + + + </TABLE> + +<BR> +<INPUT TYPE="submit" VALUE="<% mt('Get Report') |h %>"> + +</FORM> + +<& /elements/footer.html &> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + +</%init> + |