From: ivan Date: Tue, 22 Nov 2011 21:26:58 +0000 (+0000) Subject: use the new "Process global batches" right to allow access to non-agent-specific... X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=d0008add75bbb6e2ec49e6d40f28965eac0bcfb6 use the new "Process global batches" right to allow access to non-agent-specific batches, RT#15310 --- diff --git a/httemplate/search/cust_pay_batch.cgi b/httemplate/search/cust_pay_batch.cgi index f38264410..800df8702 100755 --- a/httemplate/search/cust_pay_batch.cgi +++ b/httemplate/search/cust_pay_batch.cgi @@ -111,7 +111,11 @@ unless ($pay_batch){ $orderby = "pay_batch.download,paybatchnum"; } -push @search, $curuser->agentnums_sql({ table=>'cust_main' }); +push @search, $curuser->agentnums_sql({ table => 'cust_main' }); + +push @search, $curuser->agentnums_sql({ table => 'pay_batch', + null_right => 'Process global batches', + }); my $search = ' WHERE ' . join(' AND ', @search);