diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-06-26 12:26:31 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-06-26 12:26:31 -0700 |
commit | 9531335fb25595f8883967c21f9692d4331f54ce (patch) | |
tree | e4da4a15d85fa48db6d92564c6f1adb6bba1ba75 /httemplate/search/report_rt_cust.html | |
parent | de608f008350898b465b87d0fb8c84a09824611c (diff) |
support and unclassified time per customer for a date range
Diffstat (limited to 'httemplate/search/report_rt_cust.html')
-rw-r--r-- | httemplate/search/report_rt_cust.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/httemplate/search/report_rt_cust.html b/httemplate/search/report_rt_cust.html new file mode 100644 index 000000000..07d497fc5 --- /dev/null +++ b/httemplate/search/report_rt_cust.html @@ -0,0 +1,40 @@ +<& /elements/header.html, 'Time worked per-customer summary' &> + +<FORM ACTION="rt_cust.html" METHOD="GET"> + +<TABLE> + + <& /elements/tr-select-cust_main-status.html, + 'label' => emt('Status'), + &> + + <& /elements/tr-input-beginning_ending.html &> + +<!-- + <& /elements/tr-select.html, + label => 'Time category:', + field => 'category', + options => [ '', 'development', 'support' ], + option_labels => { '' => 'all' }, + curr_value => 'development', + &> + + <& /elements/tr-select-otaker.html &> +--> + +</TABLE> + +<BR> +<INPUT TYPE="submit" VALUE="Search"> + +</FORM> + +<& /elements/footer.html &> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('List rating data'); + +my $conf = new FS::Conf; + +</%init> |