X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fsearch%2Freport_rt_transaction.html;h=91dc4a0cf6cafe784bdd023f653f97cacd292347;hp=89629e8434b50533cd6cdae924b106ad75ad247e;hb=ae2ce7f3fc2a0fe00f05145ce64e8b6b8c034631;hpb=5e05724a635a22776f1b973f5d7e77989da4e048 diff --git a/httemplate/search/report_rt_transaction.html b/httemplate/search/report_rt_transaction.html index 89629e843..91dc4a0cf 100644 --- a/httemplate/search/report_rt_transaction.html +++ b/httemplate/search/report_rt_transaction.html @@ -6,17 +6,60 @@ <% include ( '/elements/tr-input-beginning_ending.html' ) %> + <& /elements/tr-select.html, + label => 'Time category:', + field => 'category', + options => [ '', 'development', 'support' ], + option_labels => { '' => 'all' }, + curr_value => 'development', + &> + <% include ( '/elements/tr-select-otaker.html' ) %> + <% include ( '/elements/tr-input-text.html', + 'label' => 'Ticket #', + 'field' => 'ticketid', + ) + %> + + + Account: + + + + +
+ + <% include('/elements/footer.html') %> <%init> die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('List rating data'); +my $conf = new FS::Conf; + +my @pkgparts = $conf->config('support_packages'); + +my @svc_acct = (); +if ( @pkgparts ) { + @svc_acct = qsearch({ + 'table' => 'svc_acct', + 'addl_from' => ' LEFT JOIN cust_svc USING ( svcnum ) '. + ' LEFT JOIN cust_pkg USING ( pkgnum ) ', + 'extra_sql' => 'WHERE pkgpart IN ('. join(',', @pkgparts). ')', + 'order_by' => 'ORDER BY username', + }); +} +