[freeside-commits] freeside/httemplate/search cust_bill.html, 1.27, 1.28 cust_bill_event.cgi, 1.16, 1.17 cust_pay_batch.cgi, 1.7, 1.8 prepay_credit.html, 1.6, 1.7 queue.html, 1.5, 1.6 report_prepaid_income.cgi, 1.8, 1.9 report_tax.cgi, 1.38, 1.39 sqlradius.cgi, 1.17, 1.18
Ivan,,,
ivan at wavetail.420.am
Sun Jan 13 12:57:38 PST 2008
- Previous message: [freeside-commits] freeside/httemplate/search cust_event.html, 1.2, 1.3 timeworked.html, 1.3, 1.4
- Next message: [freeside-commits] freeside/httemplate/search cust_bill.html, 1.19.2.7, 1.19.2.8 cust_bill_event.cgi, 1.12.2.1, 1.12.2.2 cust_pay_batch.cgi, 1.6.2.1, 1.6.2.2 prepay_credit.html, 1.5.2.1, 1.5.2.2 queue.html, 1.5, 1.5.2.1 report_prepaid_income.cgi, 1.8, 1.8.2.1 report_tax.cgi, 1.34.2.3, 1.34.2.4 sqlradius.cgi, 1.17, 1.17.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/httemplate/search
In directory wavetail:/tmp/cvs-serv6287
Modified Files:
cust_bill.html cust_bill_event.cgi cust_pay_batch.cgi
prepay_credit.html queue.html report_prepaid_income.cgi
report_tax.cgi sqlradius.cgi
Log Message:
ACLs
Index: queue.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/queue.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- queue.html 3 Feb 2007 11:36:30 -0000 1.5
+++ queue.html 13 Jan 2008 20:57:36 -0000 1.6
@@ -1,6 +1,5 @@
<% include( 'elements/search.html',
'title' => 'Job Queue',
- 'menubar' => [ 'Main menu' => $p, ],
'name' => 'jobs',
'html_form' => qq!<FORM NAME="jobForm" ACTION="$p/misc/queue.cgi" METHOD="POST">!,
'query' => { 'table' => 'queue',
Index: sqlradius.cgi
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/sqlradius.cgi,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- sqlradius.cgi 3 Feb 2007 11:36:30 -0000 1.17
+++ sqlradius.cgi 13 Jan 2008 20:57:36 -0000 1.18
@@ -1,10 +1,4 @@
-<% include( '/elements/header.html', 'RADIUS Sessions',
- include('/elements/menubar.html',
- 'Main menu' => $p, # popurl(2),
- ),
-
- )
-%>
+<% include( '/elements/header.html', 'RADIUS Sessions') %>
% ###
% # and finally, display the thing
Index: report_prepaid_income.cgi
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/report_prepaid_income.cgi,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- report_prepaid_income.cgi 3 Feb 2007 11:36:30 -0000 1.8
+++ report_prepaid_income.cgi 13 Jan 2008 20:57:36 -0000 1.9
@@ -1,5 +1,5 @@
-<% include("/elements/header.html", 'Prepaid Income (Unearned Revenue) Report',
- menubar( 'Main Menu'=>$p, ) ) %>
+<% include("/elements/header.html", 'Prepaid Income (Unearned Revenue) Report') %>
+
<% table() %>
<TR>
<TH>Actual Unearned Revenue</TH>
Index: cust_bill_event.cgi
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/cust_bill_event.cgi,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- cust_bill_event.cgi 28 Nov 2007 01:54:21 -0000 1.16
+++ cust_bill_event.cgi 13 Jan 2008 20:57:36 -0000 1.17
@@ -140,16 +140,21 @@
qq!</FORM>!
} qw( print_ email_ fax_ ) );
-my $menubar = [
- 'Re-print these events' =>
- "javascript:print_process()",
- 'Re-email these events' =>
- "javascript:email_process()",
- ];
+my $menubar = [];
-push @$menubar, 'Re-fax these events' =>
- "javascript:fax_process()"
- if $conf->exists('hylafax');
+if ( $curuser->access_right('Resend invoices') ) {
+
+ push @$menubar, 'Re-print these events' =>
+ "javascript:print_process()",
+ 'Re-email these events' =>
+ "javascript:email_process()",
+ ;
+
+ push @$menubar, 'Re-fax these events' =>
+ "javascript:fax_process()"
+ if $conf->exists('hylafax');
+
+}
my $link_cust = sub {
my $cust_bill_event = shift;
Index: cust_pay_batch.cgi
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/cust_pay_batch.cgi,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- cust_pay_batch.cgi 21 Mar 2007 04:01:52 -0000 1.7
+++ cust_pay_batch.cgi 13 Jan 2008 20:57:36 -0000 1.8
@@ -1,7 +1,6 @@
<% include('elements/search.html',
'title' => 'Batch payment details',
'name' => 'batch details',
- 'menubar' => ['Main Menu' => $p,],
'query' => $sql_query,
'count_query' => $count_query,
'html_init' => $pay_batch ? $html_init : '',
Index: report_tax.cgi
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/report_tax.cgi,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- report_tax.cgi 27 Dec 2007 23:49:31 -0000 1.38
+++ report_tax.cgi 13 Jan 2008 20:57:36 -0000 1.39
@@ -7,8 +7,7 @@
( $ending == 4294967295
? 'now'
: time2str('%h %o %Y', $ending )
- ),
- menubar( 'Main Menu'=>$p, )
+ )
)
%>
Index: prepay_credit.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/prepay_credit.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- prepay_credit.html 19 Apr 2007 23:30:40 -0000 1.6
+++ prepay_credit.html 13 Jan 2008 20:57:36 -0000 1.7
@@ -2,7 +2,6 @@
'title' => 'Unused Prepaid Cards'.
($agent ? ' for '. $agent->agent : ''),
'menubar' => [
- 'Main menu' => $p,
'Generate cards' => $p.'edit/prepay_credit.cgi',
],
'name' => 'prepaid cards',
Index: cust_bill.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/cust_bill.html,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- cust_bill.html 15 Dec 2007 01:45:22 -0000 1.27
+++ cust_bill.html 13 Jan 2008 20:57:36 -0000 1.28
@@ -213,7 +213,6 @@
</SCRIPT>';
my $menubar = [
- 'Main menu' => $p,
'Print these invoices' =>
"javascript:confirm_print_process()",
'Email these invoices' =>
- Previous message: [freeside-commits] freeside/httemplate/search cust_event.html, 1.2, 1.3 timeworked.html, 1.3, 1.4
- Next message: [freeside-commits] freeside/httemplate/search cust_bill.html, 1.19.2.7, 1.19.2.8 cust_bill_event.cgi, 1.12.2.1, 1.12.2.2 cust_pay_batch.cgi, 1.6.2.1, 1.6.2.2 prepay_credit.html, 1.5.2.1, 1.5.2.2 queue.html, 1.5, 1.5.2.1 report_prepaid_income.cgi, 1.8, 1.8.2.1 report_tax.cgi, 1.34.2.3, 1.34.2.4 sqlradius.cgi, 1.17, 1.17.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list