diff options
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> + |